:root{
    --primary:#111827;
    --bg:#FAFAFA;
    --card:#FFFFFF;
    --blue:#2563EB;
    --purple:#7C3AED;
    --success:#22C55E;
    --warning:#F59E0B;
    --error:#EF4444;
    --border: rgba(17,24,39,0.08);
    --border-strong: rgba(17,24,39,0.14);
    --muted: #6B7280;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--bg);
    color:var(--primary);
    font-family:'Inter', sans-serif;
    -webkit-font-smoothing:antialiased;
    position:relative;
  }
  /* subtle film-grain texture over everything, premium print feel */
  body::before{
    content:''; position:fixed; inset:0; z-index:200; pointer-events:none; opacity:0.025;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }
  h1,h2,h3,h4,.jakarta{ font-family:'Plus Jakarta Sans', sans-serif; }
  .wrap{ max-width:1200px; margin:0 auto; padding:0 32px; }
  a{ text-decoration:none; color:inherit; }
  svg.icon{ width:20px; height:20px; stroke:currentColor; fill:none; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; display:block; }

  /* ---------- reveal on scroll ---------- */
  .reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
  .reveal.in{ opacity:1; transform:translateY(0); }
  @media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; transition:none; } }

  /* ---------- NAV ---------- */
  nav{
    position:sticky; top:0; z-index:50;
    background:rgba(250,250,250,0.72);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom:1px solid var(--border);
  }
  .nav-inner{ display:flex; align-items:center; justify-content:space-between; padding:15px 32px; max-width:1200px; margin:0 auto; }
  .logo{ display:flex; align-items:center; gap:10px; font-weight:800; font-size:19px; letter-spacing:-0.02em; }
  .logo-mark{ width:28px; height:28px; border-radius:8px; background:linear-gradient(135deg, var(--blue), var(--purple)); display:flex; align-items:center; justify-content:center; color:white; font-size:13px; font-weight:800; box-shadow:0 4px 14px rgba(37,99,235,0.35); }
  .nav-links{ display:flex; gap:30px; font-size:14.5px; font-weight:500; color:var(--muted); }
  .nav-links a{ position:relative; padding:4px 0; }
  .nav-links a::after{ content:''; position:absolute; left:0; bottom:-2px; width:0; height:1.5px; background:var(--primary); transition:width .2s ease; }
  .nav-links a:hover{ color:var(--primary); }
  .nav-links a:hover::after{ width:100%; }
  .nav-cta{ display:flex; align-items:center; gap:8px; }
  .btn{
    font-family:'Plus Jakarta Sans', sans-serif; font-weight:600; font-size:14.5px;
    padding:10px 20px; border-radius:10px; cursor:pointer; border:none; transition:all .18s ease;
    display:inline-flex; align-items:center; gap:8px;
  }
  .btn-primary{ background:var(--primary); color:white; box-shadow:0 1px 2px rgba(17,24,39,0.15), inset 0 1px 0 rgba(255,255,255,0.08); }
  .btn-primary:hover{ background:#000; transform:translateY(-1px); box-shadow:0 8px 18px rgba(17,24,39,0.22); }
  .btn-ghost{ background:transparent; color:var(--primary); font-weight:600; font-size:14.5px; padding:10px 14px; }
  .btn-ghost:hover{ background:rgba(17,24,39,0.05); }
  .btn-outline{ background:var(--card); color:var(--primary); border:1px solid var(--border-strong); }
  .btn-outline:hover{ border-color:var(--primary); background:rgba(17,24,39,0.02); }

  /* ---------- HERO ---------- */
  .hero{ position:relative; padding:88px 32px 40px; overflow:hidden; }
  .mesh{ position:absolute; z-index:-1; border-radius:50%; filter:blur(90px); opacity:0.35; }
  .mesh1{ width:520px; height:520px; background:var(--blue); top:-220px; left:-160px; }
  .mesh2{ width:460px; height:460px; background:var(--purple); top:-160px; right:-180px; opacity:0.28; }
  .mesh3{ width:380px; height:380px; background:var(--success); top:280px; left:38%; opacity:0.14; }

  .hero-inner{ max-width:840px; margin:0 auto; text-align:center; position:relative; }
  .eyebrow{
    display:inline-flex; align-items:center; gap:9px; margin:0 auto;
    background:rgba(255,255,255,0.7); backdrop-filter:blur(8px); border:1px solid var(--border); padding:7px 15px 7px 8px; border-radius:100px;
    font-size:13px; font-weight:600; color:var(--muted); width:fit-content;
    box-shadow:0 2px 10px rgba(17,24,39,0.04);
  }
  .eyebrow .avatars{ display:flex; }
  .eyebrow .avatars span{ width:19px; height:19px; border-radius:50%; border:2px solid #fff; margin-left:-7px; display:block; }
  .eyebrow .avatars span:first-child{ margin-left:0; }
  .eyebrow .dot{ width:6px; height:6px; border-radius:50%; background:var(--success); margin-left:2px; }
  .hero h1{
    font-size:clamp(40px, 6.2vw, 74px); line-height:1.02; letter-spacing:-0.04em; font-weight:800;
    margin:24px auto 0;
  }
  .hero h1 .accent{ background:linear-gradient(100deg, var(--blue), var(--purple)); -webkit-background-clip:text; background-clip:text; color:transparent; }
  .hero p{ font-size:19px; color:var(--muted); max-width:560px; margin:22px auto 0; line-height:1.6; }
  .hero-actions{ display:flex; gap:14px; justify-content:center; margin-top:34px; }
  .hero-actions .btn{ padding:14px 26px; font-size:15.5px; }
  .hero-actions .btn-primary svg{ width:16px; height:16px; }

  /* ---------- HERO PRODUCT MOCKUP ---------- */
  .stage{ position:relative; max-width:980px; margin:64px auto 0; }
  .browser{
    background:var(--card); border-radius:18px; border:1px solid var(--border);
    box-shadow: 0 30px 80px -20px rgba(17,24,39,0.28), 0 0 0 1px rgba(17,24,39,0.02);
    overflow:hidden; position:relative; z-index:2;
  }
  .browser-bar{ display:flex; align-items:center; gap:8px; padding:13px 16px; border-bottom:1px solid var(--border); background:#fbfbfc; }
  .browser-bar span{ width:9px; height:9px; border-radius:50%; background:#e5e7eb; }
  .browser-url{ flex:1; text-align:center; font-size:12px; color:var(--muted); background:#f1f2f4; border-radius:100px; padding:5px 12px; margin:0 60px; font-family:'Inter',sans-serif; }
  .app{ display:grid; grid-template-columns:200px 1fr; min-height:400px; text-align:left; }
  .app-side{ border-right:1px solid var(--border); padding:20px 14px; background:#fcfcfd; }
  .app-side .side-item{ display:flex; align-items:center; gap:10px; font-size:13px; font-weight:600; color:var(--muted); padding:9px 10px; border-radius:8px; margin-bottom:2px; }
  .app-side .side-item.active{ background:rgba(37,99,235,0.08); color:var(--blue); }
  .app-side .side-item svg{ width:16px; height:16px; }
  .app-main{ padding:26px 28px; }
  .app-main-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:20px; }
  .app-main-head h3{ font-size:16.5px; }
  .app-main-head .btn{ padding:7px 14px; font-size:12.5px; }
  .stat-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-bottom:18px; }
  .stat-card{ border:1px solid var(--border); border-radius:12px; padding:14px 16px; }
  .stat-card .lbl{ font-size:11.5px; color:var(--muted); font-weight:600; text-transform:uppercase; letter-spacing:0.04em; }
  .stat-card .val{ font-size:21px; font-weight:800; font-family:'Plus Jakarta Sans',sans-serif; margin-top:4px; }
  .stat-card .delta{ font-size:11.5px; color:var(--success); font-weight:600; margin-top:2px; }
  .chart-card{ border:1px solid var(--border); border-radius:12px; padding:16px 18px; }
  .chart-card .chd{ display:flex; justify-content:space-between; margin-bottom:10px; }
  .chart-card .chd h4{ font-size:13px; font-weight:600; }
  .chart-card .chd span{ font-size:11.5px; color:var(--muted); }

  /* floating pills anchored to the mockup */
  .float-pill{
    position:absolute; z-index:3; background:rgba(255,255,255,0.85); backdrop-filter: blur(10px);
    border:1px solid rgba(255,255,255,0.7); border-radius:14px; padding:10px 14px;
    box-shadow:0 14px 34px rgba(17,24,39,0.12); font-family:'Plus Jakarta Sans', sans-serif;
    font-weight:600; font-size:13px; display:flex; align-items:center; gap:9px;
    animation:float 6.5s ease-in-out infinite;
  }
  .float-pill .ico{ width:28px; height:28px; border-radius:9px; display:flex; align-items:center; justify-content:center; color:white; flex-shrink:0; }
  .float-pill .ico svg{ width:15px; height:15px; }
  @keyframes float{ 0%,100%{ transform:translateY(0px);} 50%{ transform:translateY(-12px);} }
  .p1{ top:-26px; left:-30px; animation-delay:0s; }
  .p2{ top:40px; right:-36px; animation-delay:1.4s; }
  .p3{ bottom:-24px; left:60px; animation-delay:2.3s; }
  .p4{ bottom:20px; right:-28px; animation-delay:0.8s; }
  @media (max-width: 1040px){ .float-pill{ display:none; } }
  @media (prefers-reduced-motion: reduce){ .float-pill{ animation:none; } }

  .logo-strip{ margin-top:70px; text-align:center; }
  .logo-strip span{ font-size:12.5px; font-weight:600; color:var(--muted); text-transform:uppercase; letter-spacing:0.08em; }
  .logo-row{ display:flex; justify-content:center; gap:52px; margin-top:22px; opacity:0.55; flex-wrap:wrap; font-family:'Plus Jakarta Sans',sans-serif; font-weight:800; font-size:16px; letter-spacing:-0.02em; }

  /* ---------- MARQUEE CATEGORIES ---------- */
  .marquee-section{ padding:70px 0 20px; overflow:hidden; }
  .marquee-mask{ position:relative; -webkit-mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
  .marquee-track{ display:flex; gap:14px; width:max-content; animation:scroll 34s linear infinite; }
  .marquee-track:hover{ animation-play-state:paused; }
  @keyframes scroll{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }
  .cat-chip{
    background:var(--card); border:1px solid var(--border); border-radius:14px; padding:16px 22px;
    display:flex; align-items:center; gap:11px; white-space:nowrap; transition:all .18s ease;
  }
  .cat-chip:hover{ transform:translateY(-2px); box-shadow:0 12px 28px rgba(17,24,39,0.08); border-color:transparent; }
  .cat-chip .ico{ width:30px; height:30px; border-radius:9px; display:flex; align-items:center; justify-content:center; color:white; flex-shrink:0; }
  .cat-chip .ico svg{ width:16px; height:16px; }
  .cat-chip span{ font-size:14px; font-weight:600; }
  @media (prefers-reduced-motion: reduce){ .marquee-track{ animation:none; flex-wrap:wrap; } }

  /* ---------- SECTION SHARED ---------- */
  section{ padding:90px 0; }
  .section-head{ text-align:center; max-width:640px; margin:0 auto 52px; }
  .section-label{ font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; color:var(--blue); margin-bottom:12px; display:flex; align-items:center; justify-content:center; gap:8px; }
  .section-label::before, .section-label::after{ content:''; width:16px; height:1px; background:var(--blue); opacity:0.4; }
  .section-head h2{ font-size:clamp(28px,3.4vw,42px); letter-spacing:-0.03em; font-weight:800; }
  .section-head p{ color:var(--muted); font-size:16.5px; margin-top:14px; line-height:1.6; }

  /* ---------- WHY JOIN — BENTO ---------- */
  .bento{ display:grid; grid-template-columns:1.3fr 1fr 1fr; grid-template-rows:auto auto; gap:18px; }
  .bento-card{ background:var(--card); border:1px solid var(--border); border-radius:20px; padding:32px; position:relative; overflow:hidden; transition:all .2s ease; }
  .bento-card:hover{ border-color:var(--border-strong); box-shadow:0 16px 40px rgba(17,24,39,0.07); transform:translateY(-2px); }
  .bento-1{ grid-row:span 2; display:flex; flex-direction:column; justify-content:space-between; background:linear-gradient(160deg, #111827, #1f2937); color:white; }
  .bento-1 h3{ font-size:24px; letter-spacing:-0.02em; margin-bottom:10px; }
  .bento-1 p{ color:rgba(255,255,255,0.6); font-size:14.5px; line-height:1.6; }
  .bento-1 .mini-feed{ margin-top:24px; }
  .bento-1 .mf-row{ display:flex; align-items:center; gap:10px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1); border-radius:12px; padding:10px 12px; margin-bottom:8px; }
  .bento-1 .mf-row .avatar{ width:24px; height:24px; }
  .bento-1 .mf-row span{ font-size:12.5px; color:rgba(255,255,255,0.75); }
  .why-ico{ width:42px; height:42px; border-radius:12px; display:flex; align-items:center; justify-content:center; color:white; margin-bottom:20px; }
  .why-ico svg{ width:20px; height:20px; }
  .bento-card h3{ font-size:18px; margin-bottom:9px; letter-spacing:-0.01em; }
  .bento-card p{ font-size:14px; color:var(--muted); line-height:1.6; }
  .bento-2 .why-ico{ background:var(--purple); }
  .bento-3 .why-ico{ background:var(--success); }
  .bento-4{ grid-column: span 2; display:flex; align-items:center; gap:24px; }
  .bento-4 .why-ico{ background:var(--warning); margin-bottom:0; flex-shrink:0; }
  .bento-4 .txt h3{ margin-bottom:6px; }

  /* ---------- AI TOOLS ---------- */
  .tools-band{ background:radial-gradient(circle at 15% 15%, #1f2937, #0b0f19 65%); border-radius:28px; padding:64px 48px; color:white; position:relative; overflow:hidden; }
  .tools-band::before{
    content:''; position:absolute; inset:0; opacity:0.5;
    background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size:36px 36px; mask-image:radial-gradient(circle at 30% 20%, black, transparent 70%);
  }
  .tools-band .section-head, .tools-band .tools-grid{ position:relative; }
  .tools-band .section-head h2, .tools-band .section-head p{ color:white; }
  .tools-band .section-head p{ color:rgba(255,255,255,0.6); }
  .tools-band .section-label{ color:#93C5FD; }
  .tools-band .section-label::before, .tools-band .section-label::after{ background:#93C5FD; }
  .tools-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
  .tool-card{
    background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:16px;
    padding:22px; transition:all .2s ease;
  }
  .tool-card:hover{ background:rgba(255,255,255,0.09); border-color:rgba(255,255,255,0.22); transform:translateY(-3px); }
  .tool-card .ico{ width:38px; height:38px; border-radius:10px; background:rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center; margin-bottom:16px; color:#93C5FD; }
  .tool-card h4{ font-size:15px; font-weight:600; margin-bottom:6px; font-family:'Plus Jakarta Sans',sans-serif; }
  .tool-card p{ font-size:13px; color:rgba(255,255,255,0.5); line-height:1.5; }

  /* ---------- COMMUNITY ---------- */
  .community-grid{ display:grid; grid-template-columns:1fr 1.15fr; gap:64px; align-items:center; }
  .community-copy .section-label{ justify-content:flex-start; }
  .community-copy .section-label::before{ display:none; }
  .community-copy h2{ font-size:clamp(26px,3vw,38px); letter-spacing:-0.03em; margin:12px 0 16px; }
  .community-copy p{ color:var(--muted); font-size:16px; line-height:1.7; margin-bottom:30px; }
  .stat-row{ display:flex; gap:36px; }
  .stat-row div strong{ font-size:26px; font-family:'Plus Jakarta Sans',sans-serif; display:block; letter-spacing:-0.02em; }
  .stat-row div span{ font-size:13px; color:var(--muted); }

  .feed-stack{ position:relative; }
  .feed-card{ background:var(--card); border:1px solid var(--border); border-radius:16px; padding:16px 18px; margin-bottom:12px; display:flex; gap:13px; box-shadow:0 6px 20px rgba(17,24,39,0.05); transition:transform .2s ease; }
  .feed-card:hover{ transform:translateX(4px); }
  .feed-card:nth-child(2){ margin-left:24px; }
  .feed-card:nth-child(3){ margin-left:48px; }
  .avatar{ width:36px; height:36px; border-radius:50%; flex-shrink:0; display:flex; align-items:center; justify-content:center; color:white; font-size:12px; font-weight:700; font-family:'Plus Jakarta Sans',sans-serif; }
  .feed-card .fname{ font-weight:700; font-size:13.5px; }
  .feed-card .ftime{ font-size:12px; color:var(--muted); }
  .feed-card p{ font-size:13px; color:var(--primary); margin-top:5px; line-height:1.5; }
  .feed-tags{ display:flex; gap:7px; margin-top:9px; }
  .tag{ font-size:11px; font-weight:700; padding:4px 9px; border-radius:100px; background:rgba(37,99,235,0.08); color:var(--blue); }

  /* ---------- RESOURCES ---------- */
  .res-grid{ display:grid; grid-template-columns:1.3fr 1fr 1fr; gap:20px; }
  .res-card{ background:var(--card); border:1px solid var(--border); border-radius:18px; overflow:hidden; transition:all .2s ease; }
  .res-card:hover{ transform:translateY(-4px); box-shadow:0 18px 36px rgba(17,24,39,0.09); border-color:transparent; }
  .res-thumb{ height:160px; display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
  .res-thumb svg{ width:32px; height:32px; }
  .res-thumb::after{ content:''; position:absolute; inset:0; background:radial-gradient(circle at 70% 20%, rgba(255,255,255,0.5), transparent 60%); }
  .res-body{ padding:20px 22px 24px; }
  .res-cat{ font-size:11.5px; font-weight:700; color:var(--blue); text-transform:uppercase; letter-spacing:0.06em; }
  .res-body h4{ font-size:16.5px; margin:9px 0 7px; letter-spacing:-0.015em; line-height:1.3; }
  .res-body p{ font-size:13.5px; color:var(--muted); line-height:1.55; }
  .res-card.wide{ grid-row:span 1; }

  /* ---------- MARKETPLACE / JOBS ---------- */
  .job-grid{ display:flex; flex-direction:column; gap:12px; }
  .job-card{ background:var(--card); border:1px solid var(--border); border-radius:14px; padding:18px 22px; display:flex; justify-content:space-between; align-items:center; gap:16px; transition:all .18s ease; }
  .job-card:hover{ border-color:var(--primary); transform:translateX(3px); }
  .job-left{ display:flex; gap:14px; align-items:center; }
  .job-logo{ width:44px; height:44px; border-radius:12px; flex-shrink:0; display:flex; align-items:center; justify-content:center; color:white; }
  .job-logo svg{ width:19px; height:19px; }
  .job-left h4{ font-size:14.5px; margin-bottom:3px; }
  .job-left span{ font-size:12.5px; color:var(--muted); }
  .job-badge{ font-size:12px; font-weight:700; padding:6px 13px; border-radius:100px; white-space:nowrap; }
  .badge-blue{ background:rgba(37,99,235,0.1); color:var(--blue); }
  .badge-purple{ background:rgba(124,58,237,0.1); color:var(--purple); }
  .badge-success{ background:rgba(34,197,94,0.1); color:var(--success); }

  /* ---------- STORIES ---------- */
  .story-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
  .story-card{ background:var(--card); border:1px solid var(--border); border-radius:18px; padding:28px; transition:all .2s ease; }
  .story-card:hover{ transform:translateY(-3px); box-shadow:0 16px 36px rgba(17,24,39,0.08); }
  .story-card .quote-mark{ font-family:'Plus Jakarta Sans',sans-serif; font-size:34px; font-weight:800; color:var(--border-strong); line-height:1; margin-bottom:6px; }
  .story-card p{ font-size:14.5px; line-height:1.7; color:var(--primary); margin-bottom:22px; }
  .story-who{ display:flex; gap:12px; align-items:center; }
  .story-who .avatar{ width:38px; height:38px; }
  .story-who strong{ font-size:13.5px; display:block; }
  .story-who span{ font-size:12px; color:var(--muted); }

  /* ---------- NEWSLETTER ---------- */
  .news-band{
    background:linear-gradient(120deg, var(--blue), var(--purple)); border-radius:28px; padding:70px 48px;
    text-align:center; color:white; position:relative; overflow:hidden;
  }
  .news-band::before{ content:''; position:absolute; width:340px; height:340px; background:rgba(255,255,255,0.12); border-radius:50%; top:-160px; right:-100px; filter:blur(20px); }
  .news-band h2{ font-size:clamp(26px,3.2vw,40px); letter-spacing:-0.03em; margin-bottom:12px; position:relative; }
  .news-band p{ color:rgba(255,255,255,0.85); font-size:16px; margin-bottom:32px; position:relative; }
  .news-form{ display:flex; justify-content:center; gap:10px; max-width:440px; margin:0 auto; position:relative; }
  .news-form input{
    flex:1; padding:14px 18px; border-radius:10px; border:none; font-size:14.5px; font-family:'Inter',sans-serif;
  }
  .news-form input:focus{ outline:3px solid rgba(255,255,255,0.4); }
  .news-form button{ background:var(--primary); color:white; }

  /* ---------- FOOTER ---------- */
  footer{ border-top:1px solid var(--border); padding:64px 0 32px; }
  .foot-grid{ display:grid; grid-template-columns:1.4fr repeat(4,1fr); gap:32px; margin-bottom:48px; }
  .foot-col h5{ font-size:13px; font-weight:700; margin-bottom:16px; color:var(--muted); text-transform:uppercase; letter-spacing:0.05em; }
  .foot-col a{ display:block; font-size:14px; color:var(--primary); margin-bottom:11px; }
  .foot-col a:hover{ color:var(--blue); }
  .foot-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:28px; border-top:1px solid var(--border); font-size:13px; color:var(--muted); }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 980px){
    .nav-links{ display:none; }
    .bento{ grid-template-columns:1fr 1fr; }
    .bento-1{ grid-column:span 2; grid-row:auto; }
    .bento-4{ grid-column:span 2; }
    .res-grid, .story-grid, .tools-grid{ grid-template-columns:repeat(2,1fr); }
    .community-grid{ grid-template-columns:1fr; }
    .foot-grid{ grid-template-columns:1fr 1fr; }
    .app{ grid-template-columns:1fr; }
    .app-side{ display:none; }
  }
  @media (max-width: 560px){
    .bento{ grid-template-columns:1fr; }
    .bento-1{ grid-column:span 1; }
    .bento-4{ grid-column:span 1; flex-direction:column; align-items:flex-start; }
    .res-grid, .story-grid, .tools-grid, .stat-cards{ grid-template-columns:1fr; }
    .hero-actions{ flex-direction:column; }
    .news-form{ flex-direction:column; }
    .logo-row{ gap:26px; }
  }

  :focus-visible{ outline:2.5px solid var(--blue); outline-offset:3px; }
