﻿  /* Headings + body: Plus Jakarta Sans */
  :root{
    --bg:#000000;
    --surface:#151515;
    --surface-2:#212121;
    --border:#2C2D2E;
    --text:#FEFEFE;
    --muted:#A8B1BE;
    --muted-2:#626D7A;
    --accent:#2B6BFF;
    --accent-hover:#4580FF;
    --link:#0187F6;
    --teal:#00D3E6;
    --radius:16px;
    --radius-btn:999px;
    --font-display:'Plus Jakarta Sans',sans-serif;
    --font-body:'Plus Jakarta Sans',sans-serif;
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--bg);
    color:var(--text);
    font-family:var(--font-body);
    font-weight:400;
    font-size:17px;
    line-height:1.4;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
  }
  a{color:inherit;text-decoration:none;}
  .mono{font-family:'JetBrains Mono',monospace;}
  .wrap,
  .header-inner{
    max-width: 1620px;
    margin:0 auto;
    padding:0 60px;
  }

  /* Clean solid black canvas */
  .grid-bg{display:none;}

  /* HERO STAGE — exact VK WorkSpace logic:
     one full-viewport scene; transparent header floats over the bg;
     title+lead sit in the upper half; CTA is pinned to the bottom */
  .hero{
    position:relative;z-index:1;
    min-height:100svh;
    display:flex;flex-direction:column;
    overflow:hidden;
    background:#000 url('../assets/welldev.hero.webp') center / cover no-repeat;
    padding:0;
  }

  .hero > header{
    position:relative;z-index:20;
    flex-shrink:0;
    background:transparent;
  }
  .header-row--top{
    display:flex;align-items:center;justify-content:space-between;
    height:76px;
    border-bottom:1px solid #a7a7a7;
  }
  .logo,
  .footer-logo{
    display:inline-flex;
    align-items:center;
    gap:10px;
    min-width:112px;
    height:48px;
    color:#fff;
    font-family:var(--font-display);
    font-weight:700;
    font-size:17px;
    letter-spacing:-0.03em;
    line-height:1;
    text-decoration:none;
  }
  .logo-mark{
    width:40px;height:40px;flex-shrink:0;
    display:block;
    border-radius:10px;
    object-fit:cover;
  }
  .logo-text{
    white-space:nowrap;
    font-family:var(--font-display);
    font-weight:500;
    font-size:30px;
    letter-spacing:-0.03em;
  }
  .logo .dot,
  .footer-logo .dot{display:none;}
  .header-actions{display:flex;align-items:center;gap:8px;}
  .hbtn{
    display:inline-flex;align-items:center;justify-content:center;
    height:36px;
    padding:0 16px;border-radius:8px;
    font-family:var(--font-body);
    font-size:17px;font-weight:500;letter-spacing:0;white-space:nowrap;
    transition:background .15s, border-color .15s, color .15s;
    box-sizing:border-box;
    line-height:1;
    cursor:pointer;
  }
  .hbtn--blue{background: #0187F6;color:#fff;border:1px solid transparent;}
  .hbtn--blue:hover, .hbtn--blue:focus-visible{background: #1d9cff;}
  .hbtn--ghost{
    background:#151515;color:#fff;
    border:1px solid transparent;
  }
  .hbtn--ghost:hover, .hbtn--ghost:focus-visible{
    border-color:transparent;
    background:#1D1D1D;
  }
  .header-row--nav{
    display:flex;align-items:center;justify-content:space-between;
    height:61px;
    font-size:17px;font-weight:400;
    letter-spacing:0.01em;
  }
  .header-row--nav a{
    color:#fff;
    font-weight:400;
    letter-spacing:0.01em;
    transition:color .15s;
  }
  /* hover one link → all others dim; hovered stays white */
  .header-row--nav:hover a{color:rgba(255,255,255,0.7);}
  .header-row--nav a:hover,
  .header-row--nav a:focus-visible{color:#fff;}
  @media (max-width:820px){
    .header-row--nav{display:none;}
    .hbtn--ghost{display:none;}
  }

  .hero__content{
    position:relative;z-index:10;
    flex:1;
    display:flex;flex-direction:column;align-items:center;
    text-align:center;
    width:min(1440px, calc(100% - 120px));
    margin:0 auto;
    padding:40px 0 40px;
  }
  .hero__eyebrow{
    font-size:20px;
    font-weight:400;
    letter-spacing:0.15em;
    text-transform:uppercase;
    color:rgba(255,255,255,0.4);
    margin:0 0 16px;
  }
  .hero__heading{
    position:relative;
    display:inline-block;
  }
  .hero__content h1{
    font-family:var(--font-display);
    font-weight:600;
    width:752px;
    max-width:100%;
    height:90px;
    font-size:90px;
    line-height:90px;
    letter-spacing:0.01em;
    text-transform:none;
    color:#fff;
    margin:0;
    text-align:center;
    white-space:nowrap;
    transform:scaleY(0.80);
    transform-origin:center center;
  }
  /* VK-style subtitle under the brand title */
  .hero__content p.lead{
    color:#fff;
    font-size:18px;
    font-weight:400;
    line-height:1.45;
    letter-spacing:0;
    max-width:620px;
    margin:28px auto 0;
    text-align:center;
  }
  .hero__cta{
    margin-top:auto;
    width:176px;
    height:52px;
    padding:0;
    font-size:20px;
  }
  @media (max-width:640px){
    .wrap,
    .header-inner{padding:0 20px;}
    .header-row--top{height:64px;}
    .hbtn{height:34px;padding:0 14px;font-size:17px;}
    .hero__cta{width:176px;height:52px;padding:0;font-size:20px;}
    .hero__content{width:min(1440px, calc(100% - 40px));padding:45px 0 32px;}
    .hero__content p.lead{max-width:420px;margin:16px auto 0;font-size:16px;}
    .hero__content h1{
      width:100%;
      height:auto;
      font-size:clamp(2rem, 10vw, 48px);
      line-height:1.05;
      white-space:normal;
      transform:none;
    }
  }

  .eyebrow{
    font-size:0.82rem;font-weight:400;color:var(--muted-2);
    display:flex;align-items:center;margin-bottom:20px;
    letter-spacing:0.06em;text-transform:uppercase;
  }

  /* SECTION SHARED — equal air between Services / Process / Work / Contact
     (section.wrap must win over .wrap { padding: 0 60px }) */
  section{position:relative;z-index:1;}
  section.wrap{
    padding:100px 60px 0;
  }
  section.hero{padding:0;} /* hero owns its own spacing — don't touch */
  main > section.wrap:last-of-type{padding-bottom:100px;}
  .section-head{max-width:600px;margin-bottom:64px;}
  .section-head .eyebrow{margin-bottom:14px;}
  h2{
    font-family:var(--font-display);font-weight:700;
    font-size:clamp(1.75rem, 3.2vw, 2.5rem);letter-spacing:-0.015em;margin-bottom:14px;
    line-height:1.16;
  }
  .section-head p{color:var(--muted);font-size:1.02rem;}

  /* Shared centered section heads (Services / Process / AI / Work / FAQ) */
  #services,
  #process,
  #ai,
  #work,
  #faq,
  #tours,
  .tours-section{
    text-align:center;
  }
  #services .section-head,
  #process .section-head,
  #ai .section-head,
  #work .section-head,
  #faq .section-head,
  #tours .section-head,
  .tours-section .section-head{
    max-width:720px;
    margin:0 auto 80px;
    text-align:center;
  }
  #services .section-head .eyebrow,
  #process .section-head .eyebrow,
  #ai .section-head .eyebrow,
  #work .section-head .eyebrow,
  #faq .section-head .eyebrow,
  #tours .section-head .eyebrow,
  .tours-section .section-head .eyebrow{
    justify-content:center;
    margin-bottom:20px;
    font-size:0.85rem;
    letter-spacing:0.12em;
    color:rgba(255,255,255,0.4);
  }
  #services .section-head h2,
  #process .section-head h2,
  #ai .section-head h2,
  #work .section-head h2,
  #faq .section-head h2,
  #tours .section-head h2,
  .tours-section .section-head h2{
    font-size:clamp(2.5rem, 5vw, 3.75rem);
    font-weight:600;
    letter-spacing:-0.02em;
    margin-bottom:20px;
    color:#fff;
  }
  #services .section-head p,
  #process .section-head p,
  #ai .section-head p,
  #work .section-head p,
  #faq .section-head p,
  #tours .section-head p,
  .tours-section .section-head p{
    font-size:18px;
    line-height:1.5;
    color:rgba(255,255,255,0.72);
    max-width:560px;
    margin:0 auto;
  }
  @media (max-width:600px){
    section.wrap{padding:100px 20px 0;}
    section.hero{padding:0;}
    main > section.wrap:last-of-type{padding-bottom:100px;}
    #services .section-head,
    #process .section-head,
    #ai .section-head,
    #work .section-head,
    #faq .section-head,
    #tours .section-head,
    .tours-section .section-head{margin-bottom:48px;}
  }

  /* SERVICES */
  .services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    text-align:left;
    max-width:1200px;
    margin:0 auto;
  }
  @media (max-width:900px){.services-grid{grid-template-columns:1fr 1fr;}}
  @media (max-width:600px){.services-grid{grid-template-columns:1fr;}}
  .service-card{
    background:var(--surface);border-radius:var(--radius);
    padding:32px 28px;transition:background .15s;
  }
  .service-card:hover{background:var(--surface-2);}
  .service-card .num{font-size:0.82rem;font-weight:400;color:var(--accent);margin-bottom:16px;display:block;}
  .service-card h3{font-family:var(--font-display);font-size:1.15rem;font-weight:700;margin-bottom:10px;}
  .service-card p{color:var(--muted);font-size:0.94rem;font-weight:400;}

  /* 3D TOURS — compact process-style block */
  .tours-section .section-head{margin-bottom:56px;}
  .tours-steps{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    max-width:1000px;
    margin:0 auto;
    text-align:left;
  }
  .tours-step{
    padding:8px 4px;
  }
  .tours-step .step{
    font-family:var(--font-display);
    font-size:1.4rem;
    font-weight:700;
    color:var(--accent);
    margin-bottom:14px;
  }
  .tours-step p{
    color:var(--muted);
    font-size:1rem;
    line-height:1.5;
    margin:0;
  }
  .tours-media{
    position:relative;
    max-width:1100px;
    margin:28px auto 0;
    border-radius:0;
    overflow:visible;
    background:#000;
  }
  .tours-media__img{
    display:block;
    width:100%;
    height:auto;
  }
  .tours-media__cta{
    position:absolute;
    left:50%;
    top:78%;
    transform:translate(-50%, -50%);
    z-index:2;
    width:auto;
    min-width:176px;
    height:52px;
    padding:0 28px;
    font-size:20px;
    box-shadow:0 10px 40px rgba(0,0,0,0.45);
  }
  .tours-media::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.18);
    pointer-events:none;
  }
  @media (max-width:760px){
    .tours-steps{grid-template-columns:1fr;gap:28px;max-width:420px;}
    .tours-media{margin-top:20px;}
  }

  /* PROCESS */
  .process-list{
    display:flex;
    flex-direction:column;
    max-width:800px;
    margin:0 auto;
    text-align:left;
  }
  .process-item{
    display:grid;
    grid-template-columns:80px 1fr;
    gap:28px;
    padding:36px 0;
    border-bottom:1px solid rgba(255,255,255,0.08);
  }
  .process-item:last-child{border-bottom:none;}
  .process-item .step{
    font-family:var(--font-display);
    font-size:1.6rem;
    font-weight:700;
    color:var(--accent);
  }
  .process-item h3{
    font-family:var(--font-display);
    font-size:1.2rem;
    font-weight:700;
    margin-bottom:10px;
  }
  .process-item p{
    color:var(--muted);
    font-size:0.98rem;
    font-weight:400;
    line-height:1.55;
    max-width:560px;
  }
  .process-note{
    max-width:800px;
    margin:48px auto 0;
    padding:24px 28px;
    background:var(--surface);
    border-radius:var(--radius);
    color:var(--muted);
    font-size:0.95rem;
    line-height:1.5;
    display:flex;
    gap:14px;
    align-items:flex-start;
    text-align:left;
  }
  .process-note .ok{color:var(--teal);flex-shrink:0;}
  @media (max-width:600px){
    .process-item{grid-template-columns:56px 1fr;gap:16px;padding:28px 0;}
  }

  /* WORK — same centered rhythm */
  .work-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
    text-align:left;
    max-width:1200px;
    margin:0 auto;
    align-items:stretch;
  }
  @media (max-width:760px){.work-grid{grid-template-columns:1fr;}}
  .work-card{
    background:var(--surface);border-radius:var(--radius);
    overflow:hidden;transition:background .15s;
    display:flex;flex-direction:column;
    min-height:100%;
  }
  .work-card:hover{background:var(--surface-2);}
  .work-thumb{
    height:180px;
    position:relative;overflow:hidden;
    display:flex;align-items:center;justify-content:center;
    flex-shrink:0;
  }
  .work-thumb--light{background:#F4F4F4;}
  .work-thumb--dark{background:#0B0B0B;}
  .work-thumb .tag{
    position:absolute;
    top:14px;left:14px;
    font-size:0.72rem;font-weight:400;
    color:var(--text);padding:5px 12px;border-radius:999px;
    background:rgba(0,0,0,0.55);
    z-index:1;
  }
  .work-thumb--light .tag{
    background:rgba(0,0,0,0.72);
  }
  .work-brand{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:6px;
    padding:0 24px;
  }
  .work-brand__title{
    font-family:var(--font-display);
    font-weight:700;
    letter-spacing:-0.03em;
    line-height:1;
  }
  .work-brand__sub{
    font-family:var(--font-body);
    font-weight:500;
    letter-spacing:0.22em;
    text-transform:uppercase;
    line-height:1;
  }
  .work-brand--stonecrest .work-brand__title{
    font-size:clamp(1.6rem, 2.4vw, 2rem);
    color:#111827;
  }
  .work-brand--stonecrest .work-brand__sub{
    font-size:0.72rem;
    color:#6B7280;
  }
  .work-brand--buildflow .work-brand__title{
    font-family:Georgia,'Times New Roman',serif;
    font-size:clamp(1.85rem, 2.8vw, 2.35rem);
    font-weight:700;
    letter-spacing:-0.02em;
    color:#111;
  }
  .work-brand--apex .work-brand__title{
    font-size:clamp(1.7rem, 2.6vw, 2.15rem);
    color:#fff;
  }
  .work-brand--dploy .work-brand__title{
    font-size:clamp(1.7rem, 2.6vw, 2.15rem);
    color:#fff;
  }
  .work-brand--dploy .work-brand__sub{
    font-size:0.72rem;
    letter-spacing:0.16em;
    color:rgba(255,255,255,0.45);
  }
  .work-body{
    padding:22px 22px 24px;
    display:flex;
    flex-direction:column;
    flex:1;
  }
  .work-body h3{
    font-family:var(--font-display);font-size:1.1rem;font-weight:700;
    margin-bottom:8px;line-height:1.25;
  }
  .work-body p{
    color:var(--muted);font-size:0.9rem;font-weight:400;
    margin-bottom:16px;line-height:1.5;flex:1;
  }
  .work-link{font-size:0.88rem;font-weight:400;color:var(--link);margin-top:auto;}
  .work-link:hover{color:var(--accent-hover);}

  /* CONTACT */
  .contact-inner{
    display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start;
  }
  @media (max-width:860px){.contact-inner{grid-template-columns:1fr;}}
  .contact-left p{color:var(--muted);margin-bottom:24px;max-width:440px;}
  .contact-detail{display:flex;flex-direction:column;gap:16px;}
  .contact-detail a{
    font-size:0.98rem;font-weight:400;color:var(--text);
    background:var(--surface);border-radius:12px;
    padding:16px 18px;display:flex;justify-content:space-between;align-items:center;
    transition:background .15s;
  }
  .contact-detail a:hover{background:var(--surface-2);}
  .contact-detail a span{color:var(--muted-2);font-size:0.85rem;font-weight:400;}
  form{display:flex;flex-direction:column;gap:16px;}
  label{font-size:0.85rem;color:var(--muted);margin-bottom:6px;display:block;}
  input, textarea{
    width:100%;background:var(--surface);border:1px solid transparent;border-radius:12px;
    padding:13px 16px;color:var(--text);font-family:var(--font-body);font-size:0.94rem;
    transition:border-color .15s, background .15s;
  }
  input:focus, textarea:focus{outline:none;border-color:var(--accent);background:var(--surface-2);}
  textarea{resize:vertical;min-height:100px;}
  .field{display:flex;flex-direction:column;}
  .hp{
    position:absolute;
    left:-10000px;
    width:1px;height:1px;
    overflow:hidden;
  }
  form .hbtn{align-self:flex-start;}
  form .hbtn:disabled{opacity:0.65;cursor:wait;}
  .form-status{
    margin:0;
    font-size:0.92rem;
    line-height:1.45;
  }
  .form-status--ok{color:var(--teal);}
  .form-status--error{color:#ff8b8b;}

  /* FAQ */
  .faq-list{
    max-width:800px;
    margin:0 auto;
    text-align:left;
  }
  .faq-item{
    border-bottom:1px solid rgba(255,255,255,0.1);
  }
  .faq-q{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding:28px 0;
    background:none;
    border:none;
    color:var(--text);
    font-family:var(--font-body);
    font-size:1.15rem;
    font-weight:500;
    text-align:left;
    cursor:pointer;
    line-height:1.35;
  }
  .faq-q:hover{color:#fff;}
  .faq-icon{
    position:relative;
    flex-shrink:0;
    width:22px;
    height:22px;
  }
  .faq-icon::before,
  .faq-icon::after{
    content:"";
    position:absolute;
    background:var(--text);
    transition:transform .25s ease, opacity .2s ease;
  }
  .faq-icon::before{
    top:50%;left:0;
    width:100%;height:2px;
    transform:translateY(-50%);
  }
  .faq-icon::after{
    top:0;left:50%;
    width:2px;height:100%;
    transform:translateX(-50%);
  }
  .faq-item.is-open .faq-icon::after{
    transform:translateX(-50%) rotate(90deg);
    opacity:0;
  }
  .faq-a{
    display:grid;
    grid-template-rows:0fr;
    transition:grid-template-rows .3s ease;
  }
  .faq-item.is-open .faq-a{
    grid-template-rows:1fr;
  }
  .faq-a > p{
    overflow:hidden;
    margin:0;
    padding:0 0 28px;
    color:var(--muted);
    font-size:1rem;
    line-height:1.55;
    max-width:640px;
  }
  .faq-item:not(.is-open) .faq-a > p{
    padding-bottom:0;
  }

  /* AI */
  .ai-models{
    max-width:1200px;
    margin:0 auto 56px;
    text-align:center;
  }
  .ai-models__label{
    font-size:0.78rem;
    font-weight:500;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:rgba(255,255,255,0.35);
    margin-bottom:28px;
  }
  .ai-models__list{
    list-style:none;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:12px 28px;
  }
  .ai-model{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:rgba(255,255,255,0.72);
    min-width:118px;
    justify-content:center;
  }
  .ai-model__icon{
    width:22px;height:22px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    opacity:0.85;
  }
  .ai-model__icon svg{width:100%;height:100%;display:block;}
  .ai-model__name{
    font-size:0.95rem;
    font-weight:500;
    letter-spacing:-0.01em;
  }
  .ai-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    text-align:left;
    max-width:1200px;
    margin:0 auto;
  }
  @media (max-width:900px){
    .ai-grid{grid-template-columns:1fr;}
    .ai-models__list{gap:14px 20px;}
    .ai-model{min-width:104px;}
  }
  .ai-card{
    background:var(--surface);
    border-radius:var(--radius);
    padding:32px 28px;
    transition:background .15s;
  }
  .ai-card:hover{background:var(--surface-2);}
  .ai-card .num{
    font-size:0.82rem;font-weight:400;color:var(--accent);
    margin-bottom:16px;display:block;
  }
  .ai-card h3{
    font-family:var(--font-display);
    font-size:1.15rem;font-weight:700;margin-bottom:10px;
  }
  .ai-card p{color:var(--muted);font-size:0.95rem;line-height:1.55;}

  /* FOOTER — deep panel, inset sides, flush bottom */
  .site-footer{
    position:relative;
    z-index:1;
    padding:120px 24px 0;
  }
  .footer-panel{
    max-width:none;
    width:100%;
    margin:0 auto;
    background:var(--surface);
    border-radius:28px 28px 0 0;
    padding:56px 48px 88px;
  }
  .footer-top{
    display:grid;
    grid-template-columns:minmax(280px, 0.9fr) minmax(0, 1.6fr);
    gap:80px;
    align-items:start;
    max-width:1500px;
    margin:0 auto;
  }
  .footer-brand{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
  }
  .footer-tagline{
    color:rgba(255,255,255,0.55);
    font-size:0.95rem;
    line-height:1.55;
    max-width:380px;
  }
  .footer-cta{
    margin-top:4px;
  }
  .footer-nav{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:40px;
  }
  .footer-col{
    display:flex;
    flex-direction:column;
    gap:12px;
  }
  .footer-col h4{
    font-size:0.78rem;
    font-weight:500;
    letter-spacing:0.12em;
    text-transform:uppercase;
    color:rgba(255,255,255,0.35);
    margin-bottom:4px;
  }
  .footer-col a{
    color:rgba(255,255,255,0.78);
    font-size:0.95rem;
    transition:color .15s;
  }
  .footer-col a:hover{color:#fff;}
  .footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
    max-width:1500px;
    margin:48px auto 0;
    padding-top:28px;
    border-top:1px solid rgba(255,255,255,0.08);
  }
  .footer-copy{
    color:rgba(255,255,255,0.4);
    font-size:0.85rem;
  }
  .footer-domain{
    color:rgba(255,255,255,0.3);
    font-size:0.8rem;
  }
  @media (max-width:900px){
    .footer-top{grid-template-columns:1fr;gap:48px;}
    .footer-nav{grid-template-columns:repeat(2, minmax(0, 1fr));gap:32px;}
  }
  @media (max-width:600px){
    .site-footer{padding:80px 12px 0;}
    .footer-panel{padding:40px 24px 64px;border-radius:22px 22px 0 0;}
    .footer-nav{grid-template-columns:1fr 1fr;gap:28px 20px;}
    .footer-bottom{margin-top:36px;padding-top:22px;}
    .faq-q{font-size:1.02rem;padding:22px 0;}
  }

  /* LEGAL PAGES */
  .legal-header{
    position:relative;z-index:1;
    border-bottom:1px solid rgba(255,255,255,0.1);
  }
  .legal-header__inner{
    display:flex;align-items:center;justify-content:space-between;
    height:76px;
  }
  .legal-page{
    padding:100px 60px 80px;
    max-width:860px;
  }
  .legal-head{margin-bottom:48px;}
  .legal-head .eyebrow{
    display:block;margin-bottom:16px;
    font-size:0.85rem;letter-spacing:0.12em;
    color:rgba(255,255,255,0.4);
  }
  .legal-head h1{
    font-family:var(--font-display);
    font-size:clamp(2rem, 4vw, 3rem);
    font-weight:600;letter-spacing:-0.02em;
    margin-bottom:14px;color:#fff;
  }
  .legal-updated{
    color:var(--muted-2);font-size:0.9rem;
  }
  .legal-body h2{
    font-size:1.2rem;font-weight:600;
    margin:36px 0 12px;color:#fff;
  }
  .legal-body p{
    color:var(--muted);font-size:1rem;line-height:1.65;
    margin-bottom:14px;
  }
  .legal-body a{color:var(--link);}
  .legal-body a:hover{color:var(--accent-hover);}
  .footer-panel--legal{padding:40px 48px 64px;}
  .footer-legal-links{
    display:flex;align-items:center;gap:20px;flex-wrap:wrap;
  }
  .footer-legal-links a{
    color:rgba(255,255,255,0.45);font-size:0.85rem;
    transition:color .15s;
  }
  .footer-legal-links a:hover{color:#fff;}
  @media (max-width:600px){
    .legal-page{padding:72px 20px 60px;}
    .legal-header__inner{padding:0 20px;}
    .footer-panel--legal{padding:32px 24px 48px;}
  }

  ::selection{background:var(--accent);color:#fff;}
  :focus-visible{outline:2px solid var(--accent);outline-offset:2px;}