@import url('https://fonts.cdnfonts.com/css/amazon-ember');

* { margin: 0; padding: 0; box-sizing: border-box; }

/* `:root` tokens inherited from design-tokens.css */

/* ---------- CUSTOM CURSOR ---------- */
body.custom-cursor-active,
body.custom-cursor-active * { cursor: none !important; }

.custom-cursor-glow {
    position: fixed; top: 0; left: 0; width: 34px; height: 34px;
    pointer-events: none; z-index: 99998; border-radius: 50%;
    background: radial-gradient(circle, var(--glow-light) 0%, var(--glow-purple) 40%, var(--glow-deep) 62%, transparent 70%);
    filter: blur(6px); opacity: 0.8; transform: translate(-50%, -50%); will-change: left, top;
}
.custom-cursor {
    position: fixed; top: 0; left: 0; width: 20px; height: 20px;
    pointer-events: none; z-index: 99999;
    background: url("../../img/cursor.png") center / contain no-repeat;
    transform: translate(-50%, -50%); will-change: left, top;
}
@media (pointer: coarse) and (hover: none) {
    .custom-cursor, .custom-cursor-glow { display: none; }
}

/* ---------- BASE ---------- */
html {
    min-height: 100%;
    background: var(--bg-gradient);
    background-repeat: no-repeat;
}

body {
    font-family: var(--font-sans);
    color: #ffffff;
    background: transparent;
    position: relative;
    min-height: 100vh;
}

@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes patternShift { 0% { background-position: 0 0; } 100% { background-position: 840px 840px; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.sticker { position: fixed; bottom: 30px; right: 30px; width: 120px; height: auto; z-index: 999; animation: float 3s ease-in-out infinite; pointer-events: none; }

/* ---------- TOP BAR & NAVIGATION — layout and sizing from base.css ---------- */

/* ---------- PAGE: ORG HISTORY ---------- */
.oh-page { position: relative; z-index: 1; padding: 130px var(--page-padding) 40px; }

.page-back {
    display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7);
    text-decoration: none; font-size: 14px; font-weight: 600; padding: 8px 18px; border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease; margin-bottom: 28px;
}
.page-back:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }
.page-back .arrow { transition: transform 0.25s ease; }
.page-back:hover .arrow { transform: translateX(-4px); }

.oh-hero { text-align: center; margin-bottom: 60px; animation: fadeInUp 0.8s ease-out both; }
.oh-hero-logo {
    width: 160px;
    height: 160px;
    border-radius: 28px;
    object-fit: contain;
    filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.5));
    margin: 0 auto 28px;
    display: block;
}
.page-label {
    display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,0.6); margin-bottom: 16px; padding: 6px 16px;
    background: rgba(255,255,255,0.06); border-radius: 100px; border: 1px solid rgba(255,255,255,0.1);
}
.oh-hero h1 {
    font-size: clamp(36px, 5.5vw, 60px); font-weight: 800; line-height: 1.04; margin-bottom: 16px;
    background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.oh-hero p { font-size: clamp(15px, 1.4vw, 17px); color: rgba(255,255,255,0.8); line-height: 1.7; max-width: 640px; margin: 0 auto; text-align: center; }

/* Stats strip */
.oh-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 0 auto 70px; max-width: 1160px; width: 100%;
}
.oh-stat {
    text-align: center;
    padding: 24px 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.015) 100%);
    backdrop-filter: blur(40px) saturate(170%);
    -webkit-backdrop-filter: blur(40px) saturate(170%);
    border: 1px solid rgba(255,255,255,0.14);
    border-top: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 18px 40px rgba(0,0,0,0.32);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.oh-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 55px rgba(0,0,0,0.42);
    border-color: rgba(255,255,255,0.28);
}
.oh-stat-num {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    line-height: 1;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.oh-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.72);
    margin-top: 8px;
    letter-spacing: 0.4px;
}

/* Finder window — community growth */
.oh-finder-wrap {
    max-width: 1160px;
    margin: 0 auto;
}

@keyframes ohPulseGlow {
    0%, 100% { box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05) inset, 0 0 20px rgba(187, 175, 253, 0.08); }
    50% { box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05) inset, 0 0 40px rgba(187, 175, 253, 0.15); }
}

.oh-finder-window {
    position: relative;
    width: 100%;
    min-height: 520px;
    border-radius: 12px;
    background: rgba(28, 26, 42, 0.92);
    backdrop-filter: blur(55px) saturate(180%);
    -webkit-backdrop-filter: blur(55px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    overflow: hidden;
    animation: ohPulseGlow 4s ease-in-out infinite;
    display: flex;
    flex-direction: column;
}

.oh-finder-titlebar {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background: rgba(40, 40, 45, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
    gap: 12px;
    min-height: 44px;
}

.oh-finder-controls {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.oh-finder-control {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    cursor: default;
    position: relative;
}

.oh-finder-control.red { background: #ff5f57; border-color: #e04e47; }
.oh-finder-control.yellow { background: #ffbd2e; border-color: #e0a524; }
.oh-finder-control.green { background: #28c840; border-color: #1fa833; }

.oh-finder-title {
    flex: 1;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.2px;
    font-family: var(--font-sans);
}

.oh-finder-title-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("../../img/awscatlogo.png") center / contain no-repeat;
    vertical-align: middle;
    margin-right: 6px;
    filter: brightness(0.8);
}

.oh-finder-body {
    display: flex;
    flex: 1;
    min-height: 0;
    background: rgba(20, 20, 25, 0.88);
}

.oh-finder-sidebar {
    width: 180px;
    flex-shrink: 0;
    background: rgba(30, 30, 35, 0.9);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
}

.oh-finder-sidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    margin: 0 8px;
    border-radius: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    cursor: default;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
}

.oh-finder-sidebar-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
}

.oh-finder-sidebar-item.active {
    background: rgba(187, 175, 253, 0.15);
    color: #bbaffd;
}

.oh-finder-sidebar-item .icon {
    width: 18px;
    height: 18px;
    background: url("../../img/folder.png") center / contain no-repeat;
    flex-shrink: 0;
}

.oh-finder-sidebar-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 8px 16px;
}

.oh-finder-sidebar-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.25);
    padding: 8px 16px 4px;
}

.oh-finder-main {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    min-width: 0;
    min-height: 420px;
}

.oh-finder-story {
    padding: 24px 28px;
    border-right: none;
    overflow: hidden;
}

.oh-finder-story--gallery-only {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.oh-finder-story--gallery-only .oh-finder-photos {
    flex: 1 1 auto;
}

.oh-finder-story-text {
    margin-bottom: 20px;
    padding: 4px 0;
}

.oh-finder-cat-decor {
    position: absolute;
    bottom: 38px;
    right: 20px;
    width: min(200px, 22vw);
    height: auto;
    opacity: 0.22;
    pointer-events: none;
    z-index: 2;
}

.oh-finder-story-text h2 {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.95);
}

.oh-finder-story-text p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 10px;
}

.oh-finder-story-text p:last-child { margin-bottom: 0; }

.oh-finder-photos {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.25);
}

.oh-finder-gallery-view {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.oh-finder-gallery-view img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.25s ease;
}

.oh-finder-gallery-view img.is-fading {
    opacity: 0;
}

.oh-finder-gallery-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(18, 18, 22, 0.72);
    flex-shrink: 0;
}

.oh-gallery-btn {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.oh-gallery-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
}

.oh-gallery-btn:active {
    transform: scale(0.96);
}

.oh-gallery-btn svg {
    width: 16px;
    height: 16px;
    display: block;
}

.oh-finder-gallery-thumbs {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    min-width: 0;
    padding: 2px 0;
    overscroll-behavior-x: contain;
}

.oh-finder-gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.oh-gallery-thumb {
    flex-shrink: 0;
    width: 64px;
    height: 44px;
    padding: 0;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    background: none;
    cursor: pointer;
    opacity: 0.72;
    transition: opacity 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.oh-gallery-thumb:hover {
    opacity: 0.95;
}

.oh-gallery-thumb.active {
    opacity: 1;
    border-color: #f29b3c;
    box-shadow: 0 0 0 1px rgba(242, 155, 60, 0.35);
}

.oh-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.oh-finder-timeline-panel {
    padding: 24px 24px 24px 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.oh-finder-block-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 14px;
    flex-shrink: 0;
}

.oh-finder-timeline {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 28px;
    flex: 1;
}

.oh-finder-timeline::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(180deg, rgba(242, 155, 60, 0.55), rgba(242, 155, 60, 0.15), rgba(242, 155, 60, 0.05));
    border-radius: 2px;
}

.oh-finder-node {
    position: relative;
    padding: 10px 0 18px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.oh-finder-node:last-child { padding-bottom: 0; }

.oh-finder-node.in-view {
    opacity: 1;
    transform: translateY(0);
}

.oh-finder-node::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 14px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f29b3c;
    border: 2px solid rgba(26, 10, 62, 0.9);
    box-shadow: 0 0 10px rgba(242, 155, 60, 0.45);
    z-index: 2;
}

.oh-finder-node:last-child::before {
    box-shadow: 0 0 14px rgba(242, 155, 60, 0.6);
}

.oh-finder-node-year {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.6px;
    color: #d9d0ff;
    margin-bottom: 6px;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(187, 175, 253, 0.12);
    border: 1px solid rgba(187, 175, 253, 0.28);
}

.oh-finder-node h3 {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 5px;
}

.oh-finder-node p {
    font-size: 12.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
}

.oh-finder-footer {
    position: relative;
    z-index: 3;
    padding: 8px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: nowrap;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    background: rgba(30, 30, 35, 0.9);
    min-height: 32px;
    font-family: var(--font-sans);
}

.oh-finder-footer-items {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 20px;
    flex-shrink: 0;
}

.oh-finder-footer > span {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 1;
    min-width: 0;
}

.oh-finder-footer-items span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Narrative — above finder */
@keyframes ohShimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes ohTagGlow {
    0%, 100% { border-color: rgba(187, 175, 253, 0.22); box-shadow: none; }
    50% { border-color: rgba(242, 155, 60, 0.42); box-shadow: 0 0 12px rgba(242, 155, 60, 0.12); }
}

@keyframes ohNarrativeReveal {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

.oh-finder-narrative {
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
    padding: 28px 32px 30px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.015) 100%);
    backdrop-filter: blur(40px) saturate(170%);
    -webkit-backdrop-filter: blur(40px) saturate(170%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34);
    overflow: hidden;
}

.oh-finder-narrative::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 100% 100%, rgba(242, 155, 60, 0.09), transparent 58%),
        radial-gradient(ellipse 45% 35% at 0% 0%, rgba(187, 175, 253, 0.12), transparent 52%);
    pointer-events: none;
}

.oh-finder-narrative-inner {
    position: relative;
    z-index: 1;
}

.oh-narrative-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.oh-narrative-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid rgba(187, 175, 253, 0.22);
    background: rgba(187, 175, 253, 0.07);
    color: rgba(255, 255, 255, 0.72);
    animation: ohTagGlow 3.2s ease-in-out infinite;
}

.oh-narrative-tag:nth-child(2) { animation-delay: 0.5s; }
.oh-narrative-tag:nth-child(3) { animation-delay: 1s; }
.oh-narrative-tag:nth-child(4) { animation-delay: 1.5s; }

.oh-narrative-lead {
    font-size: clamp(14px, 1.35vw, 16px);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    max-width: none;
}

.oh-narrative-shimmer {
    background: linear-gradient(90deg, #ffffff 0%, #bbaffd 35%, #f29b3c 55%, #efdcf1 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ohShimmer 5s linear infinite;
    font-weight: 800;
}

.oh-narrative-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.oh-narrative-card {
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.oh-narrative-card:hover {
    transform: translateY(-3px);
    border-color: rgba(242, 155, 60, 0.28);
    background: rgba(255, 255, 255, 0.055);
}

.oh-narrative-card h4 {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 7px;
}

.oh-narrative-card p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.68);
}

.oh-narrative-quote {
    margin: 0;
    padding: 12px 16px;
    border-left: 3px solid #f29b3c;
    border-radius: 0 8px 8px 0;
    background: rgba(242, 155, 60, 0.06);
    font-size: 13.5px;
    line-height: 1.65;
    font-style: italic;
    color: rgba(255, 255, 255, 0.72);
}

.oh-narrative-reveal {
    opacity: 0;
}

.oh-finder-narrative.is-revealed .oh-narrative-reveal {
    animation: ohNarrativeReveal 0.48s ease forwards;
}

/* ---------- SITE FOOTER ---------- */
.site-footer {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.site-footer-card {
    position: relative;
    width: 100%;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.site-footer-card::before {
    display: none;
}

.site-footer-main {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 10vw 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.site-footer-logo-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-footer-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    flex-shrink: 0;
}

.site-footer-titles {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
}

.site-footer-title {
    font-size: 22px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-footer-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.5px;
}

.site-footer-desc {
    max-width: 540px;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.site-footer-socials {
    display: flex;
    gap: 14px;
    margin-top: 4px;
}

.site-footer-social {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #f29b3c;
    border: 1px solid rgba(242, 155, 60, 0.6);
    box-shadow: 0 6px 18px rgba(242, 155, 60, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-footer-social:hover {
    transform: translateY(-3px);
    background: #f7ad58;
    border-color: rgba(230, 158, 69, 0.9);
    box-shadow: 0 0 22px rgba(242, 155, 60, 0.55);
}

.site-footer-social svg {
    width: 20px;
    height: 20px;
    display: block;
}

.site-footer-bottom {
    position: relative;
    z-index: 1;
    padding: 16px 10vw 20px;
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.5);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .sticker { width: 80px; bottom: 16px; right: 16px; }
    .oh-page { padding: 100px 5vw 30px; }
    .oh-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 100%; width: 100%; gap: 14px; }
    .oh-finder-main { grid-template-columns: 1fr; min-height: 0; }
    .oh-finder-story { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
    .oh-finder-sidebar { display: none; }
    .oh-finder-cat-decor {
        width: min(140px, 38vw);
        bottom: 34px;
        right: 12px;
        opacity: 0.18;
    }
    .oh-gallery-thumb {
        width: 52px;
        height: 36px;
    }
    .oh-finder-gallery-bar {
        padding: 8px 10px;
        gap: 8px;
    }
    .oh-finder-narrative {
        margin-bottom: 22px;
        padding: 22px 20px 24px;
    }
    .oh-narrative-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .site-footer { padding: 0; }
    .site-footer-main { padding: 36px 5vw 28px; }
    .site-footer-logo-row { flex-direction: column; gap: 10px; }
    .site-footer-titles { align-items: center; text-align: center; }
    .site-footer-title { font-size: 19px; }
    .site-footer-desc { font-size: 14px; }
    .site-footer-bottom { padding: 14px 5vw 16px; font-size: 9px; }
}

/* ---------- HORIZONTAL TIMELINE ---------- */
.oh-horizontal-timeline {
    position: relative;
    width: 100%;
    margin-bottom: 56px;
    padding: 24px 0 12px;
    box-sizing: border-box;
}

.oh-timeline-line {
    position: absolute;
    top: 32px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: rgba(255, 255, 255, 0.12);
    z-index: 1;
}

.oh-timeline-nodes {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
}

.oh-timeline-node {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
}

.oh-node-marker {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(142, 131, 244, 0.5); /* light purple outline */
    background: #0d0c15;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(142, 131, 244, 0.3);
    position: relative;
    z-index: 3;
}

.oh-timeline-node.active .oh-node-marker {
    border-color: #ff9900;
    background: #ff9900;
    box-shadow: 0 0 14px rgba(255, 153, 0, 0.8);
}

.oh-node-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.oh-node-date {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ff9900;
    margin-bottom: 8px;
}

.oh-node-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.oh-node-desc {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    max-width: 220px;
    margin: 0;
}

@media (max-width: 768px) {
    .oh-horizontal-timeline {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 16px;
        margin-bottom: 32px;
    }
    .oh-horizontal-timeline::-webkit-scrollbar {
        height: 4px;
    }
    .oh-horizontal-timeline::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
    }
    .oh-horizontal-timeline::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.15);
        border-radius: 4px;
    }
    .oh-timeline-nodes {
        width: 760px; /* layout width on mobile */
        padding: 0 20px;
    }
    .oh-timeline-line {
        width: 660px;
        left: 70px;
        top: 32px;
    }
}

/* ============================================================
   MAC FREEFORM WINDOW & CANVAS STYLES
   ============================================================ */
.oh-freeform-window {
    position: relative;
    width: 100%;
    height: 620px;
    border-radius: 12px;
    background: rgba(20, 19, 31, 0.94);
    backdrop-filter: blur(55px) saturate(180%);
    -webkit-backdrop-filter: blur(55px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-top: 60px;
    animation: ohPulseGlow 4s ease-in-out infinite;
}

.oh-freeform-titlebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: rgba(30, 29, 44, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
    min-height: 44px;
}

.oh-freeform-controls {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.oh-freeform-control {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    cursor: default;
}

.oh-freeform-control.red { background: #ff5f57; border-color: #e04e47; }
.oh-freeform-control.yellow { background: #ffbd2e; border-color: #e0a524; }
.oh-freeform-control.green { background: #28c840; border-color: #1fa833; }

.oh-freeform-title {
    flex: 1;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.2px;
    font-family: var(--font-sans);
}

.oh-freeform-title-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("../../img/awscatlogo.png") center / contain no-repeat;
    vertical-align: middle;
    margin-right: 6px;
    filter: brightness(0.9) saturate(1.2);
}

.oh-freeform-body {
    position: relative;
    flex: 1;
    min-height: 0;
    background: #11101a;
    display: flex;
    flex-direction: column;
}

/* Floating Toolbar */
.oh-freeform-toolbar {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(35, 33, 53, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    display: flex;
    padding: 6px;
    gap: 6px;
}

.oh-tool-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oh-tool-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.oh-tool-btn.active {
    color: #bbaffd;
    background: rgba(187, 175, 253, 0.18);
    border: 1px solid rgba(187, 175, 253, 0.25);
}

.oh-tool-btn svg {
    width: 20px;
    height: 20px;
    display: block;
}

/* Zoom Panel */
.oh-freeform-zoom-panel {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 10;
    background: rgba(35, 33, 53, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    padding: 4px 8px;
    gap: 8px;
    height: 32px;
}

.oh-zoom-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.15s ease, color 0.15s ease;
}

.oh-zoom-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.oh-zoom-btn svg {
    width: 14px;
    height: 14px;
}

.oh-zoom-level {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    min-width: 42px;
    text-align: center;
    font-family: var(--font-sans);
}

.oh-zoom-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.15);
}

/* Canvas Viewport */
.oh-freeform-canvas-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1.2px, transparent 1.2px);
    background-size: 24px 24px;
}

.oh-freeform-canvas-container:active {
    cursor: grabbing;
}

/* Canvas Board (grid container) */
.oh-freeform-canvas-board {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1.2px, transparent 1.2px);
    background-size: 24px 24px;
    transform-origin: center center;
    top: 0;
    left: 0;
}

/* SVG Connectors */
.oh-freeform-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.oh-freeform-connections path {
    fill: none;
    stroke: rgba(187, 175, 253, 0.24);
    stroke-width: 2px;
    stroke-dasharray: 4 4;
    transition: stroke 0.3s ease;
}

.oh-freeform-connections circle {
    fill: rgba(242, 155, 60, 0.7);
    transition: fill 0.3s ease;
}

/* Board Title (Index.html Section 2 Card Design) */
.oh-freeform-board-title {
    position: absolute;
    left: 380px;
    top: 190px;
    width: 340px;
    min-height: 120px;
    padding: 16px 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: grab;
    transition: all 0.3s ease;
}

.oh-freeform-board-title:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.55), 0 0 25px rgba(242, 155, 60, 0.15);
}

.oh-freeform-board-title:active {
    cursor: grabbing;
    transform: scale(1.02);
}

.section3-window-controls {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.section3-control {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
}
.section3-control.red { background: #ff5f56; }
.section3-control.yellow { background: #ffbd2e; }
.section3-control.green { background: #27c93f; }

.section2-card-title-text {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffffff 30%, #f29b3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.oh-freeform-board-title p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-weight: 500;
}

/* Freeform Section Badges & Color Swatch Block */
.ff-badge-tag {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 2px;
    pointer-events: none;
    z-index: 1;
}

.ff-badge-highlight {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, var(--aws-orange) 0%, var(--aws-orange-hover) 100%);
    color: #0d0428;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    width: fit-content;
    box-shadow: 0 4px 14px rgba(242, 155, 60, 0.3);
}

.ff-badge-sub {
    font-family: 'Caveat', cursive;
    font-size: 16px;
    color: rgba(239, 220, 241, 0.65);
    padding-left: 2px;
}

/* AWS Cloud Stack Badge (Top Right Background) */
.ff-aws-badge-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: rgba(18, 24, 38, 0.75);
    border: 1px solid rgba(242, 155, 60, 0.35);
    padding: 8px 14px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    z-index: 1;
    pointer-events: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 15px rgba(242, 155, 60, 0.12);
}

.ff-aws-badge-header {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ff-aws-badge-icon {
    width: 18px;
    height: 18px;
}

.ff-aws-badge-title {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
}

.ff-aws-badge-sub {
    font-family: 'Caveat', cursive;
    font-size: 14px;
    color: rgba(242, 155, 60, 0.85);
}

/* AWS Service Chips (EC2, S3, Lambda, DynamoDB) */
.ff-service-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(18, 24, 38, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 6px 12px;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    z-index: 1;
    pointer-events: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.ff-chip-icon {
    font-size: 14px;
    font-weight: 900;
    color: #f29b3c;
    line-height: 1;
}

.ff-chip-svg {
    width: 16px;
    height: 16px;
}

.ff-chip-label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.3px;
}

.chip-lambda { border-color: rgba(242, 155, 60, 0.35); }
.chip-ec2 { border-color: rgba(79, 172, 254, 0.35); }
.chip-s3 { border-color: rgba(255, 117, 143, 0.35); }
.chip-dynamo { border-color: rgba(168, 85, 247, 0.35); }

/* Handwritten CLI Annotations */
.ff-hw-cli {
    font-family: monospace, monospace;
    font-size: 12px;
    color: rgba(79, 172, 254, 0.45) !important;
}

.ff-hw-s3uri {
    font-family: monospace, monospace;
    font-size: 12px;
    color: rgba(242, 155, 60, 0.45) !important;
}

.ff-swatch-card {
    position: absolute;
    background: rgba(18, 24, 38, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 12px;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    z-index: 1;
    pointer-events: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.ff-swatch-title {
    font-family: 'Caveat', cursive;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-bottom: 4px;
}

.ff-swatch-colors {
    display: flex;
    gap: 6px;
}

.ff-swatch-chip {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Member Profile Cards (Index Section 2 Glass Style) */
.oh-freeform-note {
    position: absolute;
    width: 155px;
    min-height: 120px;
    padding: 16px 12px 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
    z-index: 3;
    cursor: grab;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    text-align: center;
    user-select: none;
    transform-origin: center center;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.oh-freeform-note:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.55);
}

.oh-freeform-note:active {
    cursor: grabbing;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.65);
    transform: scale(1.05) !important;
    z-index: 99 !important;
}

/* Sticky Note Tape Decoration */
.note-pin {
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 14px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* Card Header: Avatar Circle */
.note-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 0;
}

.member-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13.5px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.oh-freeform-note .note-content {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 12.5px;
    line-height: 1.3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    word-break: break-word;
}

/* Pastel Color Palettes & Avatar Accent Themes */
.note-pink {
    background: linear-gradient(135deg, #fda4af 0%, #f43f5e 100%);
    color: #fff;
}
.avatar-pink { background: #be123c; }

.note-cyan {
    background: linear-gradient(135deg, #67e8f9 0%, #06b6d4 100%);
    color: #083344;
}
.avatar-cyan { background: #0e7490; color: #fff; }

.note-yellow {
    background: linear-gradient(135deg, #fde047 0%, #eab308 100%);
    color: #422006;
}
.avatar-yellow { background: #854d0e; color: #fff; }

.note-green {
    background: linear-gradient(135deg, #86efac 0%, #22c55e 100%);
    color: #052e16;
}
.avatar-green { background: #15803d; color: #fff; }

.note-purple {
    background: linear-gradient(135deg, #d8b4fe 0%, #a855f7 100%);
    color: #fff;
}
.avatar-purple { background: #6b21a8; }

.note-orange {
    background: linear-gradient(135deg, #fed7aa 0%, #f97316 100%);
    color: #fff;
}
.avatar-orange { background: #c2410c; }

.note-blue {
    background: linear-gradient(135deg, #93c5fd 0%, #3b82f6 100%);
    color: #fff;
}
.avatar-blue { background: #1d4ed8; }

.note-indigo {
    background: linear-gradient(135deg, #c7d2fe 0%, #6366f1 100%);
    color: #fff;
}
.avatar-indigo { background: #3730a3; }

/* Rotations for organic feel */
.oh-freeform-note[data-id="chelsea"] { transform: rotate(-2deg); }
.oh-freeform-note[data-id="kyzren"] { transform: rotate(1.5deg); }
.oh-freeform-note[data-id="tanya"] { transform: rotate(-1deg); }
.oh-freeform-note[data-id="raefshaun"] { transform: rotate(2deg); }
.oh-freeform-note[data-id="christine"] { transform: rotate(-2.5deg); }
.oh-freeform-note[data-id="john"] { transform: rotate(1.8deg); }
.oh-freeform-note[data-id="rafael"] { transform: rotate(-1.5deg); }
.oh-freeform-note[data-id="jan"] { transform: rotate(2.2deg); }

/* Chrome Footer */
.oh-freeform-footer {
    position: relative;
    z-index: 3;
    padding: 8px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    background: rgba(30, 29, 44, 0.95);
    min-height: 32px;
    font-family: var(--font-sans);
}

.oh-freeform-footer-items {
    display: flex;
    gap: 20px;
}

.oh-freeform-titlebar-icon-small {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url("../../img/awscatlogo.png") center / contain no-repeat;
    vertical-align: middle;
    margin-right: 6px;
    opacity: 0.4;
}

/* Mobile Adaptive overrides for Freeform */
@media (max-width: 1024px) {
    .oh-freeform-window {
        height: 520px;
        margin-top: 40px;
    }
    .oh-freeform-toolbar {
        top: 12px;
        padding: 4px;
        gap: 4px;
    }
    .oh-tool-btn {
        width: 32px;
        height: 32px;
        padding: 6px;
    }
    .oh-tool-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* ---- Decorative Freeform Doodles (Apple Freeform-inspired) ---- */
.ff-doodle {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

/* -- Handwritten annotations -- */
.ff-handwritten {
    font-family: 'Caveat', cursive;
    color: rgba(255, 255, 255, 0.22);
    white-space: nowrap;
    user-select: none;
}

.ff-handwritten span {
    display: inline-block;
}

/* "est. 2024" top-left */
.ff-doodle:first-of-type.ff-handwritten {
    font-size: 22px;
    font-weight: 600;
    transform: rotate(-4deg);
    color: rgba(245, 183, 49, 0.3);
}

/* "AWS SBG" bold label */
.ff-hw-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.08) !important;
    letter-spacing: 2px;
    transform: rotate(-6deg);
}

/* "the dream team ★" */
.ff-hw-accent {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 107, 138, 0.28) !important;
    transform: rotate(3deg);
}

/* "teamwork makes the dreamwork !!" quote */
.ff-hw-quote {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
    color: rgba(255, 255, 255, 0.12) !important;
    transform: rotate(-3deg);
}

/* -- Curvy arrows (hand-drawn style) -- */
.ff-curvy-arrow {
    opacity: 0.2;
}

.ff-curvy-arrow-1 {
    width: 80px;
    height: 30px;
    color: #f5b731;
}

.ff-curvy-arrow-2 {
    width: 55px;
    height: 35px;
    color: #ff6b8a;
}

.ff-curvy-arrow-3 {
    width: 45px;
    height: 25px;
    color: #5de6c8;
}

.ff-curvy-arrow svg {
    width: 100%;
    height: 100%;
}

/* -- Marker highlight swoosh -- */
.ff-marker-swoosh {
    width: 200px;
    height: 20px;
    color: #f5b731;
    opacity: 0.15;
}

.ff-marker-swoosh svg {
    width: 100%;
    height: 100%;
}

/* -- Doodle sketches (lightbulb, checkmark, starburst, etc.) -- */
.ff-sketch {
    opacity: 0.18;
}

.ff-sketch svg {
    width: 100%;
    height: 100%;
}

.ff-sketch-bulb {
    width: 34px;
    height: 42px;
    color: #ffe066;
}

.ff-sketch-check {
    width: 28px;
    height: 28px;
    color: #5de6c8;
}

.ff-starburst {
    width: 36px;
    height: 36px;
    color: #ff9d5c;
}

.ff-doodle-circle {
    width: 45px;
    height: 45px;
    color: #bbaffd;
}

.ff-bracket {
    width: 14px;
    height: 36px;
    color: rgba(255, 255, 255, 0.2);
}

.ff-cross {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.15);
}

/* -- Wavy underline doodle -- */
.ff-wavy-line {
    width: 110px;
    height: 12px;
    color: #ff6b8a;
    opacity: 0.18;
}

.ff-wavy-line svg {
    width: 100%;
    height: 100%;
}

/* -- Color palette dots -- */
.ff-color-dots {
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0.35;
    height: 100%;
    top: 0 !important;
    bottom: 0 !important;
    overflow: hidden;
    justify-content: space-evenly;
    padding: 16px 0;
}

.ff-dot {
    display: block;
    width: 11px;
    height: 11px;
    flex-shrink: 0;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

/* -- AWS Service Logo Doodles (right side) -- */
.ff-aws-logo {
    opacity: 0.2;
}

.ff-aws-logo svg {
    width: 100%;
    height: 100%;
}

/* Lambda (λ) */
.ff-aws-lambda {
    width: 36px;
    height: 40px;
    color: #ff9d5c;
    transform: rotate(-3deg);
}

/* S3 Bucket */
.ff-aws-s3 {
    width: 34px;
    height: 38px;
    color: #5de6c8;
    transform: rotate(4deg);
}

/* Cloud outline */
.ff-aws-cloud {
    width: 48px;
    height: 32px;
    color: #7ec8e3;
}

/* EC2 Server rack */
.ff-aws-ec2 {
    width: 28px;
    height: 34px;
    color: #f5b731;
    transform: rotate(2deg);
}

/* DynamoDB Lightning bolt */
.ff-aws-dynamo {
    width: 24px;
    height: 32px;
    color: #7c8cf5;
    transform: rotate(5deg);
}

/* AWS Smile arrow */
.ff-aws-smile {
    width: 42px;
    height: 18px;
    color: #ff9d5c;
    opacity: 0.22;
}

/* -- Right-side handwritten annotations -- */
.ff-hw-builders {
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 157, 92, 0.32) !important;
    transform: rotate(5deg);
}

.ff-hw-cloud {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
    color: rgba(126, 200, 227, 0.28) !important;
    transform: rotate(-4deg);
}

.ff-hw-serverless {
    font-size: 15px;
    font-weight: 600;
    color: rgba(124, 140, 245, 0.28) !important;
    transform: rotate(2deg);
}

.oh-freeform-notes-wrapper {
    display: contents;
}

@media (max-width: 1024px) {
    .oh-freeform-window {
        height: auto !important;
        margin-top: 24px;
        display: flex;
        flex-direction: column;
        border-radius: 16px;
    }

    .oh-freeform-body {
        height: auto !important;
        flex: none;
    }

    .oh-freeform-canvas-container {
        height: auto !important;
        overflow: visible !important;
        cursor: default;
        padding-bottom: 20px;
    }

    .oh-freeform-canvas-board {
        position: relative !important;
        width: 100% !important;
        transform: none !important;
        background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1.2px, transparent 1.2px) !important;
        background-size: 24px 24px !important;
        top: 0 !important;
        left: 0 !important;
    }

    .oh-freeform-connections {
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }

    .oh-freeform-connections path {
        stroke-width: 1.5px !important;
        opacity: 0.22 !important;
    }

    .oh-freeform-connections circle {
        r: 3.5px !important;
        opacity: 0.6 !important;
    }

    .oh-freeform-board-title {
        position: absolute !important;
        width: calc(100% - 32px) !important;
        max-width: 380px !important;
        height: auto !important;
        min-height: 80px !important;
        padding: 14px 18px !important;
        border-radius: 16px !important;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5) !important;
        cursor: grab !important;
        z-index: 2 !important;
        transform: none !important;
    }

    .section2-card-title-text {
        font-size: 14px !important;
        letter-spacing: 0.4px !important;
        margin-bottom: 4px !important;
    }

    .oh-freeform-board-title p {
        font-size: 10.5px !important;
    }

    .oh-freeform-notes-wrapper {
        display: contents !important;
    }

    .oh-freeform-note {
        position: absolute !important;
        min-height: 115px !important;
        cursor: grab !important;
        padding: 14px 10px 12px !important;
        border-radius: 14px !important;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35) !important;
        gap: 6px !important;
    }

    .oh-freeform-note .note-content {
        font-size: 12px !important;
        line-height: 1.25 !important;
    }

    .member-avatar {
        width: 32px !important;
        height: 32px !important;
        font-size: 12.5px !important;
    }

    .note-pin {
        width: 40px !important;
        height: 12px !important;
        top: -6px !important;
    }

    .oh-freeform-zoom-panel,
    .oh-freeform-toolbar,
    .oh-freeform-footer,
    .ff-swatch-card,
    .ff-badge-tag,
    .ff-aws-badge-card,
    .ff-service-chip,
    .ff-doodle {
        display: none !important;
    }
}



