
  :root {
    --espresso: #1C1917;
    --roast: #2B2723;
    --surface: #332E2A;
    --orange: #FF6B35;
    --orange-dim: #cc5628;
    --cream: #F5F0E8;
    --cream-dim: #C4BDB4;
    --stone: #6B6560;
    --green: #4A9B6F;
    --green-light: #c8ead8;
  }


  /* ════════════════════════════════════════
     ANIMATION SECTION — Research page
  ════════════════════════════════════════ */
  .anim-section {
    max-width: 1000px;
    margin: 0 auto 4rem;
    text-align: center;
  }

  .anim-labels-row,
  .anim-titles-row,
  .anim-dots-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .anim-labels-row { margin-bottom: 0.75rem; }
  .anim-titles-row { margin-bottom: 0; }
  .anim-dots-row   { margin-top: 1rem; }

  .anim-col-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 99px;
    display: inline-block;
  }
  .anim-col-label.bad  { background: rgba(248,113,113,0.12); color: #f87171; border: 1px solid rgba(248,113,113,0.25); }
  .anim-col-label.good { background: rgba(255,107,53,0.12);  color: var(--orange); border: 1px solid rgba(255,107,53,0.30); }

  .anim-col-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }
  .anim-col-title em.red    { font-style: italic; color: #f87171; }
  .anim-col-title em.orange { font-style: italic; color: var(--orange); }

  /* Scenes container — flush, no gap */
  .anim-scenes-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
  }

  .anim-scenes-wrap::after {
    content: '';
    position: absolute;
    top: 5%; bottom: 5%;
    left: 50%;
    width: 1px;
    background: rgba(255,255,255,0.08);
    transform: translateX(-50%);
    z-index: 20;
    pointer-events: none;
  }

  .anim-scene {
    position: relative;
    width: 100%;
    background: var(--espresso);
    overflow: hidden;
  }

  .anim-character-img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    mix-blend-mode: screen;
  }

  /* Blue beam — left scene (monitor on right) */
  .anim-beam-left {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
    animation: animBeamLeft 2.2s ease-in-out infinite;
  }
  @keyframes animBeamLeft {
    0%   { opacity: 0.6;  background: radial-gradient(ellipse 70% 55% at 78% 52%, rgba(80,180,255,0.18) 0%, rgba(60,140,255,0.10) 30%, rgba(30,100,220,0.04) 60%, transparent 100%); }
    18%  { opacity: 1.0;  background: radial-gradient(ellipse 72% 57% at 78% 52%, rgba(100,200,255,0.28) 0%, rgba(70,160,255,0.15) 30%, rgba(40,120,230,0.06) 60%, transparent 100%); }
    35%  { opacity: 0.5;  background: radial-gradient(ellipse 68% 53% at 78% 52%, rgba(60,150,230,0.12) 0%, rgba(50,120,220,0.07) 30%, rgba(20,80,200,0.03) 60%, transparent 100%); }
    55%  { opacity: 0.95; background: radial-gradient(ellipse 74% 58% at 78% 52%, rgba(90,190,255,0.25) 0%, rgba(65,155,255,0.14) 30%, rgba(35,110,225,0.05) 60%, transparent 100%); }
    72%  { opacity: 0.65; background: radial-gradient(ellipse 69% 54% at 78% 52%, rgba(70,165,245,0.15) 0%, rgba(55,130,235,0.09) 30%, rgba(25,90,210,0.03) 60%, transparent 100%); }
    88%  { opacity: 1.0;  background: radial-gradient(ellipse 71% 56% at 78% 52%, rgba(95,195,255,0.26) 0%, rgba(68,158,255,0.14) 30%, rgba(38,115,228,0.05) 60%, transparent 100%); }
    100% { opacity: 0.6;  background: radial-gradient(ellipse 70% 55% at 78% 52%, rgba(80,180,255,0.18) 0%, rgba(60,140,255,0.10) 30%, rgba(30,100,220,0.04) 60%, transparent 100%); }
  }

  .anim-face-left {
    position: absolute;
    top: 4%; left: 28%;
    width: 28%; height: 38%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(160,210,255,0.13) 0%, transparent 70%);
    z-index: 3;
    pointer-events: none;
    animation: animFaceBlue 2.2s ease-in-out infinite;
  }
  @keyframes animFaceBlue {
    0%,100% { opacity: 0.5; }
    18%     { opacity: 1.0; }
    35%     { opacity: 0.3; }
    55%     { opacity: 0.95; }
    72%     { opacity: 0.4; }
    88%     { opacity: 0.9; }
  }

  /* Warm beam — right scene (monitor on left) */
  .anim-beam-right {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
    animation: animBeamRight 2.2s ease-in-out infinite;
  }
  @keyframes animBeamRight {
    0%   { opacity: 0.6;  background: radial-gradient(ellipse 70% 55% at 22% 52%, rgba(255,200,80,0.18) 0%, rgba(255,160,50,0.10) 30%, rgba(255,120,20,0.04) 60%, transparent 100%); }
    18%  { opacity: 1.0;  background: radial-gradient(ellipse 72% 57% at 22% 52%, rgba(255,225,100,0.28) 0%, rgba(255,180,65,0.15) 30%, rgba(255,140,30,0.06) 60%, transparent 100%); }
    35%  { opacity: 0.5;  background: radial-gradient(ellipse 68% 53% at 22% 52%, rgba(255,180,55,0.12) 0%, rgba(255,145,40,0.07) 30%, rgba(255,110,15,0.03) 60%, transparent 100%); }
    55%  { opacity: 0.95; background: radial-gradient(ellipse 74% 58% at 22% 52%, rgba(255,215,90,0.25) 0%, rgba(255,175,60,0.14) 30%, rgba(255,135,25,0.05) 60%, transparent 100%); }
    72%  { opacity: 0.65; background: radial-gradient(ellipse 69% 54% at 22% 52%, rgba(255,190,65,0.15) 0%, rgba(255,155,45,0.09) 30%, rgba(255,115,18,0.03) 60%, transparent 100%); }
    88%  { opacity: 1.0;  background: radial-gradient(ellipse 71% 56% at 22% 52%, rgba(255,220,95,0.26) 0%, rgba(255,178,62,0.14) 30%, rgba(255,138,28,0.05) 60%, transparent 100%); }
    100% { opacity: 0.6;  background: radial-gradient(ellipse 70% 55% at 22% 52%, rgba(255,200,80,0.18) 0%, rgba(255,160,50,0.10) 30%, rgba(255,120,20,0.04) 60%, transparent 100%); }
  }

  .anim-face-right {
    position: absolute;
    top: 4%; left: 38%;
    width: 28%; height: 32%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255,220,130,0.13) 0%, transparent 70%);
    z-index: 3;
    pointer-events: none;
    animation: animFaceWarm 2.2s ease-in-out infinite;
  }
  @keyframes animFaceWarm {
    0%,100% { opacity: 0.5; }
    18%     { opacity: 1.0; }
    35%     { opacity: 0.3; }
    55%     { opacity: 0.95; }
    72%     { opacity: 0.4; }
    88%     { opacity: 0.9; }
  }

  /* Thought bubbles */
  .anim-thought-left {
    position: absolute;
    top: 1%; left: 1%;
    width: 52%;
    z-index: 10;
    pointer-events: none;
  }
  .anim-thought-right {
    position: absolute;
    top: 1%; right: 1%;
    width: 52%;
    z-index: 10;
    pointer-events: none;
  }

  .anim-bubble {
    position: relative;
    background: #fff;
    border: 2.5px solid #1a1a1a;
    border-radius: 18px;
    padding: 10px 13px;
    font-size: 11.5px;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    text-align: center;
    box-shadow: 3px 4px 0 #1a1a1a;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(28px) scale(0.86);
    transition: none;
  }
  .anim-bubble.good-bubble {
    border-color: var(--orange);
    box-shadow: 3px 4px 0 #c94e1f;
  }
  .anim-bubble.rising {
    opacity: 1;
    transform: translateY(0px) scale(1);
    transition: opacity 0.7s ease-out, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .anim-bubble.floating {
    opacity: 1;
    transform: translateY(-6px) scale(1);
    transition: transform 1.8s ease-in-out;
  }
  .anim-bubble.fading {
    opacity: 0;
    transform: translateY(-22px) scale(0.92);
    transition: opacity 0.6s ease-in, transform 0.6s ease-in;
  }

  .anim-dot { position: absolute; border-radius: 50%; }
  .anim-bubble:not(.good-bubble) .anim-dot { background: #fff; border: 2.5px solid #1a1a1a; }
  .anim-bubble.good-bubble       .anim-dot { background: #fff; border: 2.5px solid var(--orange); }

  /* Bad tail → right (toward monitor) */
  .anim-bubble:not(.good-bubble) .anim-dot.d1 { width:11px; height:11px; bottom:-17px; right:14px; }
  .anim-bubble:not(.good-bubble) .anim-dot.d2 { width:7px;  height:7px;  bottom:-27px; right:7px; }
  .anim-bubble:not(.good-bubble) .anim-dot.d3 { width:5px;  height:5px;  bottom:-35px; right:1px; }
  /* Good tail → left (toward monitor) */
  .anim-bubble.good-bubble .anim-dot.d1 { width:11px; height:11px; bottom:-17px; left:14px; }
  .anim-bubble.good-bubble .anim-dot.d2 { width:7px;  height:7px;  bottom:-27px; left:7px; }
  .anim-bubble.good-bubble .anim-dot.d3 { width:5px;  height:5px;  bottom:-35px; left:1px; }

  /* Progress dots */
  .anim-progress-dots {
    display: flex;
    gap: 7px;
    justify-content: center;
  }
  .anim-prog-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.13);
    transition: background 0.3s, transform 0.3s;
  }
  .anim-prog-dot.active-bad  { background: #f87171; transform: scale(1.35); }
  .anim-prog-dot.active-good { background: var(--orange); transform: scale(1.35); }

  @media (max-width: 700px) {
    .anim-scenes-wrap, .anim-labels-row,
    .anim-titles-row, .anim-dots-row { grid-template-columns: 1fr; }
    .anim-scenes-wrap::after { display: none; }
  }

  /* ---- SCROLLBAR ---- */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--espresso); }
  ::-webkit-scrollbar-thumb { background: var(--surface); border-radius: 3px; transition: background 0.2s; }
  ::-webkit-scrollbar-thumb:hover { background: var(--orange); }
  * { scrollbar-width: thin; scrollbar-color: var(--surface) var(--espresso); }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--espresso);
    color: var(--cream);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
  }

  /* NOISE TEXTURE OVERLAY */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.4;
  }

  /* ---- NAV ---- */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 3rem;
    background: rgba(28, 25, 23, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--cream);
    cursor: pointer;
    letter-spacing: -0.03em;
  }
  .nav-logo span { color: var(--orange); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    color: var(--cream-dim);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: color 0.2s;
    cursor: pointer;
  }
  .nav-links a:hover { color: var(--cream); }

  .nav-cta {
    background: var(--orange) !important;
    color: white !important;
    padding: 0.55rem 1.3rem;
    border-radius: 99px;
    font-weight: 500 !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--orange-dim) !important; }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: all 0.3s;
  }

  /* ---- PAGES ---- */
  .page { display: none; min-height: 100vh; padding-top: 80px; }
  .page.active { display: block; }

  /* ---- HERO ---- */
  .hero {
    padding: 7rem 3rem 5rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
  }

  .hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
  }

  .hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--cream);
    margin-bottom: 1.5rem;
    max-width: 820px;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--orange);
  }

  .hero p {
    font-size: 1.15rem;
    color: var(--cream-dim);
    max-width: 560px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.75;
  }

  .hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--orange);
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 99px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: none;
    display: inline-block;
    transition: background 0.2s, transform 0.1s;
    font-family: 'DM Sans', sans-serif;
  }
  .btn-primary:hover { background: var(--orange-dim); transform: translateY(-1px); }

  .btn-ghost {
    background: transparent;
    color: var(--cream);
    padding: 0.85rem 2rem;
    border-radius: 99px;
    font-size: 0.95rem;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid rgba(245,240,232,0.2);
    display: inline-block;
    transition: border-color 0.2s, transform 0.1s;
    font-family: 'DM Sans', sans-serif;
  }
  .btn-ghost:hover { border-color: rgba(245,240,232,0.5); transform: translateY(-1px); }

  /* ---- SUBURB BAR ---- */
  .suburb-bar {
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 0.85rem 0;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .suburb-bar-label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--stone);
    text-transform: uppercase;
    white-space: nowrap;
    font-weight: 500;
    padding: 0 1.5rem;
    flex-shrink: 0;
    border-right: 1px solid rgba(255,255,255,0.08);
    background: var(--espresso);
    position: relative;
    z-index: 2;
  }
  .suburb-marquee-wrap {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  }
  .suburb-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: suburb-scroll 32s linear infinite;
  }
  .suburb-marquee-track:hover { animation-play-state: paused; }
  .suburb-marquee-track span {
    font-size: 0.82rem;
    color: var(--stone);
    white-space: nowrap;
    letter-spacing: 0.05em;
    padding: 0 1.2rem;
    transition: color 0.2s;
    cursor: default;
  }
  .suburb-marquee-track span:hover { color: var(--cream-dim); }
  .suburb-marquee-track span.dot {
    color: var(--orange);
    font-size: 0.42rem;
    padding: 0;
    line-height: 2.2;
  }
  @keyframes suburb-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ---- SECTION STYLES ---- */
  section {
    padding: 5rem 3rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: var(--orange);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
  }

  h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
  }

  .section-intro {
    font-size: 1.05rem;
    color: var(--cream-dim);
    max-width: 560px;
    margin-bottom: 3rem;
    line-height: 1.75;
    font-weight: 300;
  }

  /* ---- SERVICE CARDS ---- */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
  }

  .service-card {
    background: var(--roast);
    padding: 2rem;
    transition: background 0.2s;
    position: relative;
  }
  .service-card:hover { background: var(--surface); }

  .service-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.9rem;
    color: var(--stone);
    line-height: 1.65;
    margin-top: 0.4rem;
  }

  /* ---- WHY SECTION ---- */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .why-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: var(--orange);
    border-radius: 50%;
    margin-top: 0.6rem;
  }

  .why-item h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .why-item p {
    font-size: 0.88rem;
    color: var(--stone);
    line-height: 1.6;
  }

  /* ---- PRICING ---- */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .pkg {
    background: var(--roast);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: border-color 0.2s;
  }
  .pkg:hover { border-color: rgba(255,255,255,0.15); }

  .pkg.featured {
    border-color: var(--orange);
    background: var(--roast);
  }

  .pkg.deal {
    border-color: var(--green);
  }

  .pkg-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 99px;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }
  .badge-orange { background: var(--orange); color: white; }
  .badge-green { background: var(--green); color: white; }
  .badge-stone { background: var(--surface); color: var(--cream-dim); }

  .pkg-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.25rem;
  }

  .pkg-price {
    font-family: 'Syne', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--cream);
    letter-spacing: -0.03em;
    margin-bottom: 0.25rem;
    line-height: 1;
  }

  .pkg-price-note {
    font-size: 0.8rem;
    color: var(--stone);
    margin-bottom: 1rem;
  }

  .pkg-was {
    font-size: 0.8rem;
    color: var(--stone);
    text-decoration: line-through;
    margin-bottom: 0.25rem;
  }

  .pkg-desc {
    font-size: 0.88rem;
    color: var(--stone);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .pkg-features { list-style: none; }
  .pkg-features li {
    font-size: 0.87rem;
    color: var(--cream-dim);
    padding: 0.35rem 0;
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.4;
  }
  .pkg-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
  }
  .pkg-features li.orange::before { background: var(--orange); }
  .pkg-features li.highlight { color: var(--cream); font-weight: 500; }
  .pkg-features li.highlight::before { background: var(--orange); width: 7px; height: 7px; top: 0.55rem; }

  .pkg-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin: 1rem 0;
  }

  .pick-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
  }

  .free-picks-box {
    background: rgba(74, 155, 111, 0.1);
    border: 1px solid rgba(74, 155, 111, 0.25);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin: 0.5rem 0;
  }
  .free-picks-box p {
    font-size: 0.82rem;
    color: var(--green-light);
    line-height: 1.6;
  }

  /* ---- ADDONS ---- */
  .addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 2rem;
  }

  .addon-item {
    background: var(--roast);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.2s;
  }
  .addon-item:hover { background: var(--surface); }

  .addon-name {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--cream);
  }
  .addon-desc {
    font-size: 0.78rem;
    color: var(--stone);
    margin-top: 2px;
  }
  .addon-price {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--orange);
    white-space: nowrap;
  }

  /* ---- REVISION BOXES ---- */
  .revision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .revision-box {
    background: var(--roast);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 1.5rem;
  }

  .revision-box h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--cream);
  }

  .revision-box p {
    font-size: 0.87rem;
    color: var(--stone);
    line-height: 1.65;
  }

  /* ---- FAQ ---- */
  .faq-list { margin-top: 2rem; }

  .faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 1.5rem 0;
    cursor: pointer;
  }

  .faq-q {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .faq-toggle {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.1rem;
    transition: background 0.2s;
  }

  .faq-a {
    font-size: 0.9rem;
    color: var(--stone);
    line-height: 1.7;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, margin-top 0.2s;
  }

  .faq-item.open .faq-a {
    max-height: 300px;
    margin-top: 1rem;
  }

  .faq-item.open .faq-toggle { background: var(--orange); color: white; }

  /* ---- STEPS ---- */
  .steps { margin-top: 2rem; counter-reset: steps; }

  .step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .step:last-child { border-bottom: none; }

  .step-num {
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: 0.1em;
    min-width: 36px;
    margin-top: 0.2rem;
  }

  .step h3 { font-size: 1rem; margin-bottom: 0.3rem; }
  .step p { font-size: 0.87rem; color: var(--stone); line-height: 1.65; }

  /* ---- VALUES ---- */
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .value-card {
    background: var(--roast);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 1.75rem;
    transition: border-color 0.2s;
  }
  .value-card:hover { border-color: rgba(255, 107, 53, 0.3); }

  .value-card h3 {
    font-size: 1rem;
    color: var(--orange);
    margin-bottom: 0.5rem;
  }

  .value-card p {
    font-size: 0.87rem;
    color: var(--stone);
    line-height: 1.65;
  }

  /* ---- PORTFOLIO ---- */
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .portfolio-card {
    background: var(--roast);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
  }
  .portfolio-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-3px); }

  .portfolio-img {
    width: 100%;
    height: 200px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--stone);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
  }

  .portfolio-info { padding: 1.25rem; }
  .portfolio-info h3 { font-size: 1rem; margin-bottom: 0.25rem; }
  .portfolio-info p { font-size: 0.82rem; color: var(--stone); }
  .portfolio-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    background: rgba(255, 107, 53, 0.12);
    color: var(--orange);
    border-radius: 99px;
    margin-top: 0.75rem;
  }

  /* ---- CONTACT FORM ---- */
  .contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
  }

  .form-group { margin-bottom: 1.25rem; }

  .form-group label {
    display: block;
    font-size: 0.82rem;
    color: var(--cream-dim);
    margin-bottom: 0.4rem;
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: var(--roast);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    outline: none;
    appearance: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--orange);
  }

  .form-group select { cursor: pointer; }
  .form-group textarea { resize: vertical; min-height: 120px; }

  .form-group input::placeholder,
  .form-group textarea::placeholder { color: var(--stone); }

  .form-note {
    font-size: 0.8rem;
    color: var(--stone);
    margin-top: 0.75rem;
  }

  .contact-info h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--cream);
  }

  .contact-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
  }

  .contact-step-num {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(255, 107, 53, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange);
    font-family: 'Syne', sans-serif;
  }

  .contact-step p { font-size: 0.87rem; color: var(--stone); line-height: 1.6; }

  /* ---- CTA SECTION ---- */
  .cta-section {
    background: var(--roast);
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 5rem 3rem;
    text-align: center;
  }

  .cta-section h2 { margin-bottom: 1rem; }
  .cta-section p { color: var(--cream-dim); max-width: 480px; margin: 0 auto 2rem; font-size: 1rem; line-height: 1.7; }

  /* ---- FOOTER ---- */
  footer {
    padding: 3rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .footer-logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--cream);
    letter-spacing: -0.02em;
  }
  .footer-logo span { color: var(--orange); }

  .footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    flex-wrap: wrap;
  }
  .footer-links a {
    font-size: 0.85rem;
    color: var(--stone);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--cream); }

  .footer-copy {
    font-size: 0.78rem;
    color: var(--stone);
    width: 100%;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .footer-copy span { flex: 1; }
  .footer-copy span:nth-child(2) { text-align: center; }
  .footer-copy span:nth-child(3) { text-align: right; }

  /* ---- PAGE TRANSITIONS ---- */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .page.active > * {
    animation: fadeUp 0.4s ease forwards;
  }

  /* ---- ABOUT STORY ---- */
  .story-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .story-block p {
    font-size: 0.95rem;
    color: var(--cream-dim);
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  .story-visual {
    background: var(--roast);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
  }

  .story-big {
    font-family: 'Syne', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    display: block;
    letter-spacing: -0.03em;
  }

  .story-sub {
    font-size: 0.82rem;
    color: var(--stone);
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
  }

  /* ---- MOBILE ---- */
  /* ---- STATS SECTION ---- */
  .stats-section {
    padding: 4rem 3rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .stats-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: var(--orange);
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
  }

  .stats-heading {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 0.75rem;
  }

  .stats-subheading {
    font-size: 0.95rem;
    color: var(--cream-dim);
    font-weight: 300;
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
  }

  .stat-card {
    background: var(--roast);
    padding: 2rem 1.75rem;
    transition: background 0.2s;
    position: relative;
  }
  .stat-card:hover { background: var(--surface); }

  .stat-card {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .stat-card.stat-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .stat-number {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .stat-number.orange { color: var(--orange); }
  .stat-number.green { color: var(--green); }
  .stat-number.cream { color: var(--cream); }

  .stat-label {
    font-size: 0.88rem;
    color: var(--cream-dim);
    line-height: 1.55;
    font-weight: 400;
    margin-bottom: 0.4rem;
  }

  .stat-source {
    font-size: 0.72rem;
    color: var(--stone);
    letter-spacing: 0.03em;
  }

  .stats-cta-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .stats-note {
    font-size: 0.82rem;
    color: var(--stone);
    font-style: italic;
  }

  /* ---- RESEARCH PAGE ---- */
  .research-section {
    padding: 3rem 3rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .research-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .research-big-stat {
    background: var(--roast);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .research-big-stat .big-num {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.75rem;
  }

  .research-big-stat .big-label {
    font-size: 0.95rem;
    color: var(--cream-dim);
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .research-big-stat .big-source {
    font-size: 0.72rem;
    color: var(--stone);
  }

  .research-bar-section {
    background: var(--roast);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
  }

  .research-bar-title {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 1.5rem;
  }

  .r-bar-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .r-bar-label {
    font-size: 0.82rem;
    color: var(--cream-dim);
    width: 260px;
    flex-shrink: 0;
    line-height: 1.4;
  }

  .r-bar-track {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    height: 22px;
    overflow: hidden;
    position: relative;
  }

  .r-bar-fill {
    height: 100%;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Syne', sans-serif;
    transition: width 1.2s ease;
  }

  .r-bar-fill.orange { background: var(--orange); color: white; }
  .r-bar-fill.green { background: var(--green); color: white; }
  .r-bar-fill.stone { background: var(--surface); color: var(--cream-dim); }

  .research-vs {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 1.5rem;
  }

  .vs-panel {
    background: var(--roast);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 1.75rem;
  }

  .vs-panel.vs-good { border-color: rgba(74,155,111,0.4); }
  .vs-panel.vs-bad { border-color: rgba(255,107,53,0.25); }

  .vs-panel-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .vs-good .vs-panel-title { color: var(--green); }
  .vs-bad .vs-panel-title { color: var(--orange); }

  .vs-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
    color: var(--cream-dim);
    line-height: 1.5;
  }

  .vs-item:last-child { border-bottom: none; }

  .vs-tick {
    width: 16px;
    height: 16px;
    min-width: 16px;
    border-radius: 50%;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
  }

  .vs-good .vs-tick { background: rgba(74,155,111,0.2); color: var(--green); }
  .vs-bad .vs-tick { background: rgba(255,107,53,0.1); color: var(--orange); }

  .vs-divider-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4rem;
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--stone);
  }

  .research-callout {
    background: rgba(74,155,111,0.08);
    border: 1px solid rgba(74,155,111,0.25);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
  }

  .research-callout h3 {
    font-size: 1rem;
    color: var(--green);
    margin-bottom: 0.5rem;
  }

  .research-callout p {
    font-size: 0.9rem;
    color: var(--cream-dim);
    line-height: 1.7;
  }

  .source-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }

  .source-chip {
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 99px;
    padding: 0.3rem 0.85rem;
    font-size: 0.72rem;
    color: var(--stone);
    letter-spacing: 0.02em;
  }

  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 65px; left: 0; right: 0;
      background: var(--espresso);
      padding: 1.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      gap: 1rem;
      z-index: 899;
    }
    .hamburger { display: flex; }
    .hero { padding: 4rem 1.5rem 3rem; }
    section { padding: 3rem 1.5rem; }
    .contact-wrap { grid-template-columns: 1fr; gap: 2rem; }
    .story-block { grid-template-columns: 1fr; gap: 2rem; }
    .revision-grid { grid-template-columns: 1fr; }
    footer { padding: 2rem 1.5rem; }
    .suburb-bar { padding: 1rem 1.5rem; }
    .cta-section { padding: 3rem 1.5rem; }
    .stats-section { padding: 3rem 1.5rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .research-section { padding: 2rem 1.5rem; }
    .research-intro-grid { grid-template-columns: 1fr; }
    .research-vs { grid-template-columns: 1fr; }
    .vs-divider-col { display: none; }
    .r-bar-label { width: 160px; }
  }

  /* ═══════════════════════════════════════
     PRELOADER
  ═══════════════════════════════════════ */
  #preloader {
    position: fixed;
    inset: 0;
    background: var(--espresso);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.7s ease, visibility 0.7s ease;
  }
  #preloader.pre-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  /* Scanlines */
  #preloader::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      0deg, transparent 0, transparent 3px,
      rgba(0,0,0,0.07) 3px, rgba(0,0,0,0.07) 4px
    );
    pointer-events: none;
    z-index: 1;
  }

  /* Animated grid lines */
  #preloader::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,107,53,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,107,53,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    animation: gridDrift 8s linear infinite;
  }
  @keyframes gridDrift {
    from { background-position: 0 0; }
    to   { background-position: 60px 60px; }
  }

  /* Corner brackets */
  .pre-corner {
    position: fixed;
    width: 44px;
    height: 44px;
    opacity: 0;
    z-index: 3;
    animation: preCornerIn 0.5s ease 0.2s forwards;
  }
  .pre-corner--tl { top: 22px; left: 22px;  border-top: 2px solid var(--orange); border-left: 2px solid var(--orange); box-shadow: -4px -4px 16px rgba(255,107,53,0.25); }
  .pre-corner--tr { top: 22px; right: 22px; border-top: 2px solid var(--orange); border-right: 2px solid var(--orange); box-shadow: 4px -4px 16px rgba(255,107,53,0.25); }
  .pre-corner--bl { bottom: 22px; left: 22px;  border-bottom: 2px solid var(--orange); border-left: 2px solid var(--orange); box-shadow: -4px 4px 16px rgba(255,107,53,0.25); }
  .pre-corner--br { bottom: 22px; right: 22px; border-bottom: 2px solid var(--orange); border-right: 2px solid var(--orange); box-shadow: 4px 4px 16px rgba(255,107,53,0.25); }
  @keyframes preCornerIn { to { opacity: 1; } }

  /* Corner accent dots */
  .pre-corner--tl::after, .pre-corner--tr::after,
  .pre-corner--bl::after, .pre-corner--br::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--orange);
  }
  .pre-corner--tl::after { top: -2px; left: -2px; }
  .pre-corner--tr::after { top: -2px; right: -2px; }
  .pre-corner--bl::after { bottom: -2px; left: -2px; }
  .pre-corner--br::after { bottom: -2px; right: -2px; }

  /* Horizontal scan line that sweeps once */
  .pre-scan {
    position: fixed;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,107,53,0.6) 40%, rgba(255,107,53,0.9) 50%, rgba(255,107,53,0.6) 60%, transparent 100%);
    top: -2px;
    z-index: 4;
    animation: scanSweep 1.8s cubic-bezier(0.4,0,0.6,1) 0.3s forwards;
    opacity: 0;
    box-shadow: 0 0 12px rgba(255,107,53,0.5);
  }
  @keyframes scanSweep {
    0%   { top: -2px; opacity: 1; }
    100% { top: 102vh; opacity: 0; }
  }

  /* Centre content */
  .pre-wrap {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* System tag above logo */
  .pre-sys-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    color: var(--orange);
    opacity: 0;
    margin-bottom: 2rem;
    animation: preFadeUp 0.5s ease 0.6s forwards;
    text-transform: uppercase;
  }
  .pre-sys-tag::before {
    content: '[ ';
    opacity: 0.5;
  }
  .pre-sys-tag::after {
    content: ' ]';
    opacity: 0.5;
  }

  /* Logo wordmark */
  .pre-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    letter-spacing: -0.04em;
    color: var(--cream);
    line-height: 1;
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    animation: preLogoIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
    position: relative;
  }
  .pre-logo .dot {
    color: var(--orange);
    display: inline-block;
    animation: dotGlow 2.4s ease-in-out 1.8s infinite;
  }
  @keyframes preLogoIn {
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  @keyframes dotGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(255,107,53,0.8), 0 0 50px rgba(255,107,53,0.4); }
    50%       { text-shadow: 0 0 40px rgba(255,107,53,1), 0 0 100px rgba(255,107,53,0.6), 0 0 160px rgba(255,107,53,0.2); }
  }

  /* Expanding divider line */
  .pre-divider {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    margin: 1.2rem 0 1rem;
    animation: preLineExpand 0.6s ease-out 1.65s forwards;
    box-shadow: 0 0 8px rgba(255,107,53,0.5);
  }
  @keyframes preLineExpand { to { width: min(360px, 80vw); } }

  /* Tagline */
  .pre-tagline {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    color: var(--cream-dim);
    text-transform: uppercase;
    opacity: 0;
    animation: preFadeUp 0.5s ease 1.9s forwards;
    margin-bottom: 2.5rem;
  }

  /* Progress bar */
  .pre-bar-wrap {
    width: min(280px, 72vw);
    opacity: 0;
    animation: preFadeUp 0.4s ease 2.1s forwards;
  }
  .pre-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
  }
  .pre-bar-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    color: var(--stone);
    text-transform: uppercase;
  }
  .pre-bar-pct {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.62rem;
    color: var(--orange);
  }
  .pre-bar-track {
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.06);
    border-radius: 1px;
    overflow: hidden;
    position: relative;
  }
  .pre-bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--orange-dim), var(--orange), #ff9a70);
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(255,107,53,0.7);
    animation: preBarFill 2s cubic-bezier(0.4, 0, 0.2, 1) 2.2s forwards;
  }
  @keyframes preBarFill {
    0%   { width: 0%; }
    30%  { width: 45%; }
    65%  { width: 72%; }
    85%  { width: 88%; }
    100% { width: 100%; }
  }

  /* Telemetry lines */
  .pre-telemetry {
    margin-top: 1.5rem;
    width: min(280px, 72vw);
    opacity: 0;
    animation: preFadeUp 0.4s ease 2.2s forwards;
  }
  .pre-tele-line {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    color: var(--stone);
    text-align: left;
    padding: 3px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
  }
  .pre-tele-line .tele-status {
    color: var(--green);
    font-size: 0.58rem;
  }
  .pre-tele-line .tele-status.pending {
    color: var(--orange);
  }

  /* Side data strips */
  .pre-side {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    animation: preFadeUp 0.5s ease 1.0s forwards;
  }
  .pre-side--left  { left: 28px; align-items: flex-start; }
  .pre-side--right { right: 28px; align-items: flex-end; }
  .pre-side-item {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.56rem;
    letter-spacing: 0.12em;
    color: rgba(107,101,96,0.5);
    text-transform: uppercase;
    line-height: 1.8;
  }
  .pre-side-item.orange { color: rgba(255,107,53,0.4); }

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

  @media (max-width: 600px) {
    .pre-side { display: none; }
    .pre-corner { width: 30px; height: 30px; top: 14px; bottom: 14px; left: 14px; right: 14px; }
    .pre-corner--tl { top: 14px; left: 14px; }
    .pre-corner--tr { top: 14px; right: 14px; }
    .pre-corner--bl { bottom: 14px; left: 14px; }
    .pre-corner--br { bottom: 14px; right: 14px; }
  }


  /* ---- FEATURED DEMO BLOCK ---- */
  .featured-demo {
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    background: var(--roast);
    transition: border-color 0.3s, transform 0.2s;
    cursor: pointer;
    user-select: none;
  }
  .featured-demo:hover { border-color: rgba(255,107,53,0.5); transform: translateY(-2px); }

  .featured-demo-screen {
    width: 100%;
    /* 16:7 gives a nice cinematic preview ratio */
    aspect-ratio: 16/7;
    position: relative;
    overflow: hidden;
    background: #0A0E1A;
  }

  /* Browser chrome bar */
  .demo-browser-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 36px;
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 12px;
    z-index: 10;
    flex-shrink: 0;
  }
  .demo-browser-dots { display: flex; gap: 6px; flex-shrink: 0; }
  .demo-browser-dots span { width: 11px; height: 11px; border-radius: 50%; display: block; }
  .demo-browser-dots span:nth-child(1) { background: rgba(255,95,86,0.85); }
  .demo-browser-dots span:nth-child(2) { background: rgba(255,189,46,0.85); }
  .demo-browser-dots span:nth-child(3) { background: rgba(39,201,63,0.85); }
  .demo-browser-url {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border-radius: 6px;
    height: 22px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.02em;
    font-family: 'Share Tech Mono', monospace;
    max-width: 360px;
    margin: 0 auto;
  }

  /* Iframe wrap - Vimeo video background */
  .demo-iframe-wrap {
    position: absolute;
    top: 36px; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    pointer-events: none;
    background: #0A0E1A;
  }
  .demo-iframe-wrap iframe {
    position: absolute;
    top: 50%; left: 50%;
    width: 177.78vh;
    height: 100%;
    min-width: 100%;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: none;
  }

  .featured-demo-footer {
    padding: 1.1rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .featured-demo-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .featured-demo-label .demo-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
    animation: demoPulse 2s ease-in-out infinite;
  }
  @keyframes demoPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.7)} }
  .featured-demo-label span {
    font-family: 'Syne', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: -0.01em;
  }
  .featured-demo-label small {
    font-size: 0.72rem;
    color: var(--stone);
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    margin-top: 1px;
  }
  .featured-demo-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    background: rgba(255,107,53,0.12);
    color: var(--orange);
    border-radius: 99px;
    border: 1px solid rgba(255,107,53,0.2);
  }


  /* ---- CAPABILITIES GRID ---- */
  .capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 2rem;
  }

  .cap-card {
    background: var(--roast);
    padding: 1.75rem;
    transition: background 0.2s;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .cap-card:hover { background: var(--surface); }

  .cap-card--cta {
    background: rgba(255,107,53,0.07);
    border: none;
  }
  .cap-card--cta:hover { background: rgba(255,107,53,0.13); }

  .cap-icon {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--orange);
    margin-bottom: 1rem;
    flex-shrink: 0;
  }

  .cap-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
  }

  .cap-desc {
    font-size: 0.83rem;
    color: var(--stone);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 0.9rem;
  }

  .cap-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: auto;
  }
  .cap-tags span {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 99px;
    background: rgba(255,255,255,0.06);
    color: var(--cream-dim);
    border: 1px solid rgba(255,255,255,0.08);
  }

  @media (max-width: 1000px) {
    .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .capabilities-grid { grid-template-columns: 1fr; }
  }

  /* ════════════════════════════════════════
     MOBILE FRIENDLINESS FIXES
  ════════════════════════════════════════ */

  /* 1. Nav mobile menu — dynamic top offset so it never overlaps nav */
  @media (max-width: 768px) {
    .nav-links.open {
      top: 0;
      padding-top: calc(65px + 1.5rem);
    }
  }

  /* 2. Hero — reduce top padding on very small screens */
  @media (max-width: 400px) {
    .hero {
      padding: 3rem 1.25rem 2rem;
    }
    .hero p {
      font-size: 1rem;
    }
  }

  /* 3. Stats grid — 2-col at 500px instead of jumping straight to 1-col */
  @media (min-width: 420px) and (max-width: 768px) {
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* 4. Footer copy — stack on mobile so 3-column row doesn't overflow */
  @media (max-width: 600px) {
    .footer-copy {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.4rem;
    }
    .footer-copy span,
    .footer-copy span:nth-child(2),
    .footer-copy span:nth-child(3) {
      text-align: left;
      flex: unset;
    }
    footer {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-links {
      gap: 1rem;
    }
  }

  /* 5. Buttons — active tap state for mobile feedback */
  .btn-primary:active {
    background: var(--orange-dim);
    transform: translateY(0) scale(0.97);
  }
  .btn-ghost:active {
    border-color: rgba(245,240,232,0.6);
    transform: translateY(0) scale(0.97);
  }

  /* 6. Featured demo cards — active state for tap feedback */
  .featured-demo:active {
    border-color: rgba(255,107,53,0.6);
    transform: translateY(0) scale(0.99);
  }

  /* 7. Mid-range breakpoint (600–768px) — prevent cramped layouts */
  @media (min-width: 601px) and (max-width: 768px) {
    .research-intro-grid {
      grid-template-columns: 1fr;
    }
    .pricing-grid {
      grid-template-columns: 1fr;
    }
  }

  /* 8. Research animation — hide side-by-side anim on small screens,
        show a simple static fallback message */
  @media (max-width: 600px) {
    .anim-section {
      display: none;
    }
  }

  /* 9. Landscape phone — reduce excessive top padding */
  @media (max-height: 500px) and (orientation: landscape) {
    .hero {
      padding-top: 2rem;
    }
    .page {
      padding-top: 60px;
    }
    nav {
      padding: 0.6rem 1.5rem;
    }
  }

  /* 10. Pricing cards — ensure min-width doesn't cause horizontal scroll
         on narrow phones */
  @media (max-width: 400px) {
    .pricing-grid {
      grid-template-columns: 1fr;
    }
    .pkg {
      padding: 1.5rem;
    }
  }


  /* ════════════════════════════════════════
     KINETIC HERO TYPOGRAPHY
  ════════════════════════════════════════ */

  /* Each word sits inside an overflow:hidden clip so it "slides up" from beneath */
  .hero-word-clip {
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    /* small extra height so descenders aren't clipped */
    padding-bottom: 0.08em;
    margin-bottom: -0.08em;
  }

  .hero-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(115%) rotate(3.5deg);
    transform-origin: bottom left;
    will-change: transform, opacity;
  }

  @keyframes heroWordDrop {
    0%   { opacity: 0; transform: translateY(115%) rotate(3.5deg); }
    55%  { opacity: 1; transform: translateY(-6%) rotate(-0.4deg); }
    75%  { transform: translateY(2.5%) rotate(0.15deg); }
    90%  { transform: translateY(-1%) rotate(0deg); }
    100% { opacity: 1; transform: translateY(0) rotate(0deg); }
  }

  /* Eyebrow fades up just before the words */
  @keyframes heroEyebrowIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Paragraph + buttons fade up after the headline finishes */
  @keyframes heroBodyIn {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Hide hero elements immediately so they're invisible until JS animates them in */
  #hero-h1,
  #page-home .hero-eyebrow,
  #page-home .hero p,
  #page-home .hero-btns {
    opacity: 0;
  }


  /* ════════════════════════════════════════
     HERO BACKGROUND IMAGE
  ════════════════════════════════════════ */
  .hero-bg-wrap {
    position: relative;
    overflow: hidden;
  }

  .hero-bg-wrap::before {
    content: '';
    z-index: 0;
    position: absolute;
    inset: 0;
    background-image: url('hero-bg-1.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    /* Dark overlay: strong at top (over text), fades to transparent at bottom */
    mask-image: linear-gradient(to bottom, black 0%, black 55%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 55%, transparent 100%);
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
  }

  /* Ensure hero content sits above the background pseudo-element */
  .hero-bg-wrap .hero {
    position: relative;
    z-index: 1;
  }


  /* ════════════════════════════════════════
     BANNER PLANE ANIMATION
  ════════════════════════════════════════ */

  /* The hero-bg-wrap already has position:relative — we just add layers */

  /* Layer order inside .hero-bg-wrap:
       z=0  ::before  — skyline image
       z=1  .plane-layer — the flying plane
       z=2  .hero  — text content
  */

  .plane-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
  }

  .plane-img {
    position: absolute;
    /* Vertical position: sits in the open sky area, above the buildings */
    top: 22%;
    width: 420px;
    /* Start off-screen right */
    right: -460px;
    animation: planeFly 18s linear 5s infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  }

  @keyframes planeFly {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-100vw - 480px)); }
  }
  @media (max-width: 600px) {
    .plane-img {
      width: 270px;
      top: 15%;
    }
  }


/* ════════════════════════════════════════
   PRELOADER
════════════════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--espresso);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#preloader.pre-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#preloader::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent 0, transparent 3px,
    rgba(0,0,0,0.07) 3px, rgba(0,0,0,0.07) 4px
  );
  pointer-events: none;
  z-index: 1;
}
#preloader::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,53,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,53,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  animation: gridDrift 8s linear infinite;
}
@keyframes gridDrift {
  from { background-position: 0 0; }
  to   { background-position: 60px 60px; }
}
.pre-corner {
  position: fixed;
  width: 44px;
  height: 44px;
  opacity: 0;
  z-index: 3;
  animation: preCornerIn 0.5s ease 0.2s forwards;
}
.pre-corner--tl { top: 22px; left: 22px;  border-top: 2px solid var(--orange); border-left: 2px solid var(--orange); box-shadow: -4px -4px 16px rgba(255,107,53,0.25); }
.pre-corner--tr { top: 22px; right: 22px; border-top: 2px solid var(--orange); border-right: 2px solid var(--orange); box-shadow: 4px -4px 16px rgba(255,107,53,0.25); }
.pre-corner--bl { bottom: 22px; left: 22px;  border-bottom: 2px solid var(--orange); border-left: 2px solid var(--orange); box-shadow: -4px 4px 16px rgba(255,107,53,0.25); }
.pre-corner--br { bottom: 22px; right: 22px; border-bottom: 2px solid var(--orange); border-right: 2px solid var(--orange); box-shadow: 4px 4px 16px rgba(255,107,53,0.25); }
@keyframes preCornerIn { to { opacity: 1; } }
.pre-corner--tl::after, .pre-corner--tr::after,
.pre-corner--bl::after, .pre-corner--br::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orange);
}
.pre-corner--tl::after { top: -2px; left: -2px; }
.pre-corner--tr::after { top: -2px; right: -2px; }
.pre-corner--bl::after { bottom: -2px; left: -2px; }
.pre-corner--br::after { bottom: -2px; right: -2px; }
.pre-scan {
  position: fixed;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,107,53,0.6) 40%, rgba(255,107,53,0.9) 50%, rgba(255,107,53,0.6) 60%, transparent 100%);
  top: -2px;
  z-index: 4;
  animation: scanSweep 1.8s cubic-bezier(0.4,0,0.6,1) 0.3s forwards;
  opacity: 0;
  box-shadow: 0 0 12px rgba(255,107,53,0.5);
}
@keyframes scanSweep {
  0%   { top: -2px; opacity: 1; }
  100% { top: 102vh; opacity: 0; }
}
.pre-wrap {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.pre-sys-tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--orange);
  opacity: 0;
  margin-bottom: 2rem;
  animation: preFadeUp 0.5s ease 0.6s forwards;
  text-transform: uppercase;
}
.pre-sys-tag::before { content: '[ '; opacity: 0.5; }
.pre-sys-tag::after  { content: ' ]'; opacity: 0.5; }
.pre-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  letter-spacing: -0.04em;
  color: var(--cream);
  line-height: 1;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  animation: preLogoIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
  position: relative;
}
.pre-logo .dot {
  color: var(--orange);
  display: inline-block;
  animation: dotGlow 2.4s ease-in-out 1.8s infinite;
}
@keyframes preLogoIn { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes dotGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(255,107,53,0.8), 0 0 50px rgba(255,107,53,0.4); }
  50%       { text-shadow: 0 0 40px rgba(255,107,53,1), 0 0 100px rgba(255,107,53,0.6), 0 0 160px rgba(255,107,53,0.2); }
}
.pre-divider {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  margin: 1.2rem 0 1rem;
  animation: preLineExpand 0.6s ease-out 1.65s forwards;
  box-shadow: 0 0 8px rgba(255,107,53,0.5);
}
@keyframes preLineExpand { to { width: min(360px, 80vw); } }
.pre-tagline {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--cream-dim);
  text-transform: uppercase;
  opacity: 0;
  animation: preFadeUp 0.5s ease 1.9s forwards;
  margin-bottom: 2.5rem;
}
.pre-bar-wrap {
  width: min(280px, 72vw);
  opacity: 0;
  animation: preFadeUp 0.4s ease 2.1s forwards;
}
.pre-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.pre-bar-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--stone);
  text-transform: uppercase;
}
.pre-bar-pct {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.62rem;
  color: var(--orange);
}
.pre-bar-track {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}
.pre-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--orange-dim), var(--orange), #ff9a70);
  border-radius: 1px;
  box-shadow: 0 0 10px rgba(255,107,53,0.7);
  animation: preBarFill 2s cubic-bezier(0.4, 0, 0.2, 1) 2.2s forwards;
}
@keyframes preBarFill {
  0%   { width: 0%; }
  30%  { width: 45%; }
  65%  { width: 72%; }
  85%  { width: 88%; }
  100% { width: 100%; }
}
.pre-telemetry {
  margin-top: 1.5rem;
  width: min(280px, 72vw);
  opacity: 0;
  animation: preFadeUp 0.4s ease 2.2s forwards;
}
.pre-tele-line {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--stone);
  text-align: left;
  padding: 3px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
}
.pre-tele-line .tele-status { color: var(--green); font-size: 0.58rem; }
.pre-tele-line .tele-status.pending { color: var(--orange); }
.pre-side {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  animation: preFadeUp 0.5s ease 1.0s forwards;
}
.pre-side--left  { left: 28px; align-items: flex-start; }
.pre-side--right { right: 28px; align-items: flex-end; }
.pre-side-item {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  color: rgba(107,101,96,0.5);
  text-transform: uppercase;
  line-height: 1.8;
}
.pre-side-item.orange { color: rgba(255,107,53,0.4); }
@keyframes preFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
  .pre-side { display: none; }
  .pre-corner { width: 30px; height: 30px; }
  .pre-corner--tl { top: 14px; left: 14px; }
  .pre-corner--tr { top: 14px; right: 14px; }
  .pre-corner--bl { bottom: 14px; left: 14px; }
  .pre-corner--br { bottom: 14px; right: 14px; }
}
