:root{
  --a173:#F3EEE4;
  --a284:#FAF7F1;
  --a391:#111111;
  --a467:#6C675F;
  --a528:#2C5BFF;
  --a614:#1943D4;
  --a739:#FF6A3D;
  --a846:#171717;
  --a915:#FFFFFF;
  --a1027:0 22px 70px rgba(17,17,17,.10);
  --a1138:28px;
  --a1264:1240px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at 80% 4%, rgba(44,91,255,.10), transparent 26%),
    radial-gradient(circle at 8% 20%, rgba(255,106,61,.08), transparent 22%),
    var(--a173);
  color:var(--a391);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input{font:inherit}

.shell{
  width:min(calc(100% - 48px), var(--a1264));
  margin-inline:auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(16px);
  background:rgba(243,238,228,.84);
  border-bottom:1px solid rgba(17,17,17,.10);
}

.nav{
  min-height:82px;
  display:flex;
  align-items:center;
  gap:26px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}

.brand img{
  width:184px;
  max-height:60px;
  object-fit:contain;
  object-position:left center;
}

.navlinks{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:27px;
  font-size:14px;
  font-weight:700;
}

.navlinks a{
  position:relative;
}

.navlinks a:not(.nav-cta)::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-7px;
  width:0;
  height:2px;
  background:var(--a391);
  transition:.2s ease;
}

.navlinks a:not(.nav-cta):hover::after{width:100%}

.nav-cta,
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:48px;
  padding:0 20px;
  border-radius:999px;
  font-weight:800;
  transition:.2s ease;
  border:2px solid var(--a391);
}

.nav-cta,
.btn-primary{
  color:#fff;
  background:var(--a528);
  border-color:var(--a528);
  box-shadow:none;
}

.nav-cta:hover,
.btn-primary:hover{
  transform:translate(-2px,-2px);
  box-shadow:none;
  background:var(--a614);
}

.btn-ghost{
  background:transparent;
  color:var(--a391);
}

.btn-ghost:hover{
  background:var(--a391);
  color:#fff;
  transform:translateY(-2px);
}

.menu-toggle{
  display:none;
  margin-left:auto;
  width:46px;
  height:46px;
  border:2px solid var(--a391);
  background:var(--a284);
  border-radius:14px;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.menu-toggle span{
  width:21px;
  height:2px;
  background:var(--a391);
  transition:.2s;
}

.mobile-menu{
  display:none;
}

.hero{
  min-height:calc(100vh - 82px);
  padding:74px 0 74px;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(400px,.95fr);
  align-items:center;
  gap:54px;
}

h1,h2,h3,.display{
  font-family:"Space Grotesk",Inter,sans-serif;
  letter-spacing:-.055em;
  margin:0;
}

h1{
  max-width:830px;
  font-size:clamp(64px,7.2vw,112px);
  line-height:.88;
  font-weight:700;
}

.hero-line{
  display:inline-block;
  position:relative;
  color:var(--a528);
}

.hero-line::after{
  content:"";
  position:absolute;
  left:2%;
  right:-2%;
  height:11px;
  bottom:-7px;
  background:var(--a739);
  border-radius:50%;
  transform:rotate(-1.5deg) skewX(-18deg);
  z-index:-1;
  opacity:.95;
}

.hero-copy{
  max-width:680px;
  margin:30px 0 0;
  color:#393631;
  font-size:clamp(17px,1.5vw,21px);
  line-height:1.55;
  font-weight:500;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:33px;
}

.hero-note{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:20px;
  color:var(--a467);
  font-size:13px;
  font-weight:700;
}

.hero-note span:first-child{
  width:26px;
  height:1px;
  background:var(--a391);
}

.hero-art-wrap{
  position:relative;
  min-height:620px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-art{
  position:relative;
  z-index:2;
  width:min(100%,610px);
  filter:drop-shadow(0 30px 35px rgba(17,17,17,.10));
  transform:rotate(1deg);
}

.scribble{
  position:absolute;
  z-index:1;
  width:84%;
  height:70%;
  border:3px solid var(--a528);
  border-radius:47% 53% 44% 56% / 58% 42% 58% 42%;
  transform:rotate(-7deg);
  opacity:.55;
}

.ticker{
  border-block:2px solid var(--a391);
  background:var(--a391);
  color:#fff;
  overflow:hidden;
}

.ticker-track{
  width:max-content;
  display:flex;
  align-items:center;
  gap:30px;
  padding:15px 0;
  animation:ticker 30s linear infinite;
  font-family:"Space Grotesk",sans-serif;
  font-weight:700;
  font-size:18px;
  text-transform:uppercase;
  letter-spacing:.03em;
}

.ticker-dot{
  color:var(--a739);
  font-size:23px;
}

@keyframes ticker{
  to{transform:translateX(-50%)}
}

.section{
  padding:118px 0;
  border-bottom:1px solid rgba(17,17,17,.14);
}

.section-heading{
  display:grid;
  grid-template-columns:.78fr 1.22fr;
  gap:40px;
  align-items:end;
  margin-bottom:64px;
}

.kicker{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:900;
  color:var(--a528);
}

.section-heading h2{
  font-size:clamp(48px,6vw,82px);
  line-height:.94;
  max-width:820px;
}

.section-heading p{
  max-width:620px;
  margin:18px 0 0;
  color:var(--a467);
  line-height:1.65;
  font-size:17px;
}

.feature-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:72px;
  min-height:560px;
  padding:42px 0;
}

.feature-row + .feature-row{
  border-top:1px dashed rgba(17,17,17,.28);
}

.feature-row.reverse .feature-copy{order:2}
.feature-row.reverse .feature-art{order:1}

.feature-copy{
  max-width:560px;
}

.feature-number{
  display:inline-flex;
  width:48px;
  height:48px;
  border-radius:50%;
  align-items:center;
  justify-content:center;
  border:2px solid var(--a391);
  font-family:"Space Grotesk",sans-serif;
  font-weight:700;
  background:#fff;
  box-shadow:none;
  margin-bottom:22px;
}

.feature-copy h3{
  font-size:clamp(40px,4.6vw,66px);
  line-height:.98;
}

.feature-copy p{
  font-size:17px;
  line-height:1.7;
  color:var(--a467);
  margin:22px 0 0;
}

.feature-art{
  position:relative;
  min-height:470px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.feature-art::before{
  content:"";
  position:absolute;
  width:88%;
  aspect-ratio:1;
  background:#fff;
  border:2px solid var(--a391);
  border-radius:39% 61% 55% 45% / 50% 37% 63% 50%;
  transform:rotate(-3deg);
  box-shadow:10px 10px 0 rgba(17,17,17,.92);
}

.feature-art img{
  position:relative;
  z-index:2;
  width:min(100%,520px);
  max-height:510px;
  object-fit:contain;
  filter:drop-shadow(0 18px 18px rgba(17,17,17,.10));
}

.feature-art.blue::before{background:#fff}
.feature-art.orange::before{background:#fff}

.privacy{
  background:var(--a528);
  color:#fff;
  border-block:2px solid var(--a391);
}

.privacy .kicker{color:#fff}
.privacy .section-heading p{color:rgba(255,255,255,.76)}

.privacy-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:60px;
  align-items:center;
}

.privacy-art{
  background:transparent;
  border:0;
  border-radius:0;
  padding:0;
  box-shadow:none;
  transform:none;
  display:flex;
  align-items:center;
  justify-content:center;
}

.privacy-art img{
  width:100%;
  max-width:560px;
  aspect-ratio:1;
  object-fit:contain;
  filter:drop-shadow(0 18px 24px rgba(0,0,0,.16));
}

.privacy-points{
  display:grid;
  gap:14px;
}

.privacy-points > div:last-child{margin-top:10px}

.privacy-points > div:last-child .btn{
  background:#fff;
  color:#111;
  border-color:#111;
  box-shadow:none;
}

.privacy-point{
  display:flex;
  align-items:flex-start;
  gap:16px;
  padding:17px 0;
  border-bottom:1px solid rgba(255,255,255,.25);
}

.privacy-point strong{
  font-family:"Space Grotesk",sans-serif;
  font-size:19px;
}

.privacy-point p{
  margin:4px 0 0;
  color:rgba(255,255,255,.74);
  line-height:1.55;
  font-size:14px;
}

.check{
  flex:0 0 auto;
  width:30px;
  height:30px;
  border-radius:50%;
  background:#fff;
  color:var(--a528);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  border:2px solid var(--a391);
}

.edge-list{
  border-top:2px solid var(--a391);
}

.edge-row{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  align-items:center;
  gap:72px;
  padding:76px 0;
  border-bottom:1px solid rgba(17,17,17,.24);
}

.edge-row.reverse .edge-copy{order:2}
.edge-row.reverse .edge-art{order:1}

.edge-copy{
  max-width:590px;
}

.edge-index{
  display:flex;
  align-items:center;
  gap:0;
  margin-bottom:18px;
  color:var(--a528);
  font-size:12px;
  line-height:1;
  font-weight:900;
  letter-spacing:.10em;
}

.edge-copy h3{
  font-size:clamp(42px,4.8vw,68px);
  line-height:.96;
  max-width:650px;
}

.edge-copy p{
  margin:22px 0 0;
  max-width:610px;
  color:var(--a467);
  font-size:17px;
  line-height:1.68;
}

.edge-points{
  list-style:none;
  padding:0;
  margin:26px 0 0;
  border-top:1px solid rgba(17,17,17,.20);
}

.edge-points li{
  position:relative;
  padding:14px 0 14px 24px;
  border-bottom:1px solid rgba(17,17,17,.14);
  font-size:14px;
  line-height:1.55;
  font-weight:650;
}

.edge-points li::before{
  content:"";
  position:absolute;
  left:0;
  top:21px;
  width:8px;
  height:8px;
  background:var(--a739);
  transform:rotate(45deg);
}

.edge-art{
  position:relative;
  min-height:470px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.edge-art::before{
  content:"";
  position:absolute;
  width:min(86%, 500px);
  aspect-ratio:1;
  background:#fff;
  border:2px solid var(--a391);
  border-radius:45% 55% 41% 59% / 55% 43% 57% 45%;
  transform:rotate(-2deg);
  box-shadow:10px 10px 0 rgba(17,17,17,.92);
}

.edge-row:nth-child(even) .edge-art::before{
  transform:rotate(2deg);
  border-radius:56% 44% 58% 42% / 42% 58% 44% 56%;
}

.edge-art img{
  position:relative;
  z-index:2;
  width:min(100%,520px);
  max-height:470px;
  object-fit:contain;
  filter:drop-shadow(0 18px 18px rgba(17,17,17,.10));
}

.plans{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  margin-top:52px;
}

.plan{
  border:2px solid var(--a391);
  border-radius:28px;
  padding:34px;
  background:var(--a284);
  box-shadow:none;
  position:relative;
  overflow:visible;
}

.plan.pro{
  border:2px solid transparent;
  background:
    linear-gradient(var(--a391),var(--a391)) padding-box,
    linear-gradient(115deg,#80611F,#D9B75B,#F2DEA0,#B58C35,#80611F) border-box;
  background-size:100% 100%, 260% 260%;
  color:#fff;
  box-shadow:none;
  animation:goldBorderShift 9s ease-in-out infinite;
}

@keyframes goldBorderShift{
  0%,100%{background-position:0 0, 0% 50%}
  50%{background-position:0 0, 100% 50%}
}

.plan-info{
  position:absolute;
  top:17px;
  right:17px;
  width:31px;
  height:31px;
  padding:0;
  border:1px solid rgba(17,17,17,.24);
  border-radius:50%;
  background:rgba(255,255,255,.70);
  backdrop-filter:blur(9px);
  -webkit-backdrop-filter:blur(9px);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:5;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}

.plan-info:hover,
.plan-info:focus-visible{
  transform:translateY(-1px);
  background:rgba(255,255,255,.88);
  border-color:rgba(17,17,17,.42);
  outline:none;
}

.plan-info svg{
  width:15px;
  height:15px;
  stroke:var(--a391);
  fill:none;
  stroke-width:1.7;
  stroke-linecap:round;
}

.plan.pro .plan-info{
  border-color:rgba(236,212,143,.42);
  background:rgba(255,255,255,.12);
}

.plan.pro .plan-info:hover,
.plan.pro .plan-info:focus-visible{
  background:rgba(255,255,255,.20);
  border-color:rgba(236,212,143,.72);
}

.plan.pro .plan-info svg{stroke:#F3E3B3}

.plan-tooltip{
  position:absolute;
  top:57px;
  right:16px;
  width:min(260px,calc(100% - 32px));
  padding:12px 13px;
  border:1px solid rgba(17,17,17,.16);
  border-radius:14px;
  background:rgba(250,247,241,.94);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  color:var(--a391);
  font-size:12px;
  line-height:1.5;
  font-weight:650;
  box-shadow:0 12px 30px rgba(17,17,17,.10);
  opacity:0;
  transform:translateY(-4px);
  pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;
  z-index:8;
}

.plan.pro .plan-tooltip{
  background:rgba(29,29,29,.96);
  color:rgba(255,255,255,.82);
  border-color:rgba(236,212,143,.28);
  box-shadow:0 12px 30px rgba(0,0,0,.18);
}

.plan-info:hover + .plan-tooltip,
.plan-info:focus-visible + .plan-tooltip,
.plan-info[aria-expanded="true"] + .plan-tooltip{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.plan-badge{
  position:absolute;
  top:18px;
  right:58px;
  background:var(--a739);
  color:var(--a391);
  border:1.5px solid var(--a391);
  padding:7px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.plan h3{
  font-size:38px;
  margin-bottom:8px;
}

.price{
  font-family:"Space Grotesk",sans-serif;
  font-size:64px;
  font-weight:700;
  letter-spacing:-.06em;
  margin:22px 0 4px;
}

.price small{
  font-size:15px;
  letter-spacing:0;
  color:var(--a467);
  font-family:Inter,sans-serif;
  font-weight:700;
}

.pro .price small{color:rgba(255,255,255,.62)}

.plan p{
  color:var(--a467);
  line-height:1.6;
}

.pro p{color:rgba(255,255,255,.68)}

.plan ul{
  list-style:none;
  padding:0;
  margin:27px 0 32px;
  display:grid;
  gap:12px;
}

.plan li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-weight:650;
  font-size:14px;
}

.plan li::before{
  content:"✓";
  color:var(--a528);
  font-weight:900;
}

.pro li::before{color:#7EA0FF}

.plan .btn{
  width:100%;
}

.pro .btn-primary{
  background:#fff;
  color:var(--a391);
  border-color:#fff;
  box-shadow:none;
}

.faq{
  display:grid;
  grid-template-columns:.7fr 1.3fr;
  gap:70px;
  align-items:start;
}

.faq-title{
  position:sticky;
  top:118px;
}

.faq-title h2{
  font-size:clamp(50px,6vw,78px);
  line-height:.93;
  margin-top:10px;
}

.faq-list{
  border-top:2px solid var(--a391);
}

details{
  border-bottom:1px solid rgba(17,17,17,.32);
  padding:0;
}

summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:24px 0;
  font-family:"Space Grotesk",sans-serif;
  font-size:22px;
  font-weight:700;
}

summary::-webkit-details-marker{display:none}

summary::after{
  content:"+";
  width:34px;
  height:34px;
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1.5px solid var(--a391);
  border-radius:50%;
  transition:.2s;
}

details[open] summary::after{transform:rotate(45deg)}

details p{
  margin:-8px 48px 24px 0;
  line-height:1.7;
  color:var(--a467);
  max-width:740px;
}

.final-cta{
  padding:40px 0 120px;
}

.cta-box{
  border:2px solid var(--a391);
  border-radius:36px;
  background:var(--a739);
  padding:64px;
  min-height:420px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:center;
  box-shadow:12px 12px 0 var(--a391);
  overflow:hidden;
  position:relative;
}

.cta-box h2{
  font-size:clamp(54px,6.5vw,94px);
  line-height:.9;
  max-width:750px;
}

.cta-box .kicker{color:#111}

.cta-box p{
  font-size:18px;
  line-height:1.6;
  max-width:580px;
  margin:24px 0 30px;
}

.cta-art{
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  z-index:2;
}

.cta-art img{
  width:min(100%, 460px);
  max-height:340px;
  object-fit:contain;
  object-position:center bottom;
  filter:drop-shadow(0 16px 16px rgba(17,17,17,.10));
}

footer{
  background:var(--a391);
  color:#fff;
  padding:70px 0 28px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.6fr repeat(3,1fr);
  gap:46px;
  padding-bottom:52px;
}

.footer-brand img{
  width:190px;
  filter:brightness(0) invert(1);
  opacity:.97;
}

.footer-brand p{
  color:rgba(255,255,255,.60);
  line-height:1.6;
  max-width:360px;
  font-size:14px;
  margin:18px 0 0;
}

.footer-col h4{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:rgba(255,255,255,.45);
  margin:0 0 16px;
}

.footer-col{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
  font-size:14px;
}

.footer-col a{
  color:rgba(255,255,255,.84);
}

.footer-col a:hover{color:#fff}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.14);
  padding-top:24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  color:rgba(255,255,255,.45);
  font-size:12px;
}

.footer-bottom-links{
  display:flex;
  gap:18px;
}

@media (max-width: 980px){
  .navlinks{display:none}
  .menu-toggle{display:flex}

  .mobile-menu{
    display:grid;
    grid-template-rows:0fr;
    transition:grid-template-rows .25s ease;
  }

  .mobile-menu-inner{
    overflow:hidden;
    display:grid;
    gap:0;
  }

  .topbar.open .mobile-menu{
    grid-template-rows:1fr;
  }

  .mobile-menu a{
    padding:16px 24px;
    border-top:1px solid rgba(17,17,17,.10);
    font-weight:800;
  }

  .mobile-menu .mobile-primary{
    color:#fff;
    background:var(--a528);
  }

  .hero{
    grid-template-columns:1fr;
    gap:14px;
    min-height:auto;
    padding-top:56px;
  }

  .hero-copy{max-width:760px}

  .hero-art-wrap{
    min-height:520px;
    margin-top:-20px;
  }

  .hero-art{width:min(100%,560px)}

  .section-heading,
  .feature-row,
  .privacy-grid,
  .faq{
    grid-template-columns:1fr;
  }

  .section-heading{
    gap:12px;
    align-items:start;
  }

  .section-heading .kicker{
    display:block;
    width:auto;
  }

  .edge-row{
    grid-template-columns:1fr;
    gap:24px;
  }

  .edge-row.reverse .edge-copy,
  .edge-row.reverse .edge-art{
    order:initial;
  }

  .edge-art{
    order:-1 !important;
    min-height:430px;
  }

  .feature-row{
    gap:22px;
  }

  .feature-row.reverse .feature-copy,
  .feature-row.reverse .feature-art{
    order:initial;
  }

  .feature-copy{
    max-width:100%;
  }

  .privacy-art{
    max-width:560px;
    margin-inline:auto;
  }

  .faq-title{
    position:static;
  }

  .cta-box{
    grid-template-columns:1fr;
  }

  .cta-art{
    position:absolute;
    right:-16px;
    bottom:-18px;
    width:42%;
    opacity:.32;
    pointer-events:none;
  }

  .footer-grid{
    grid-template-columns:1.4fr 1fr 1fr;
  }

  .footer-brand{
    grid-column:1 / -1;
  }
}

@media (max-width: 720px){
  .shell{
    width:min(calc(100% - 28px), var(--a1264));
  }

  .nav{min-height:70px}
  .brand img{width:158px}

  .hero{
    padding:42px 0 50px;
  }

  h1{
    font-size:clamp(54px,16vw,78px);
    line-height:.9;
  }

  .hero-copy{
    font-size:16px;
    margin-top:24px;
  }

  .hero-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
  }

  .hero-actions .btn{
    width:100%;
  }

  .hero-art-wrap{
    min-height:390px;
    margin-top:12px;
  }

  .hero-art{
    width:100%;
    max-height:390px;
    object-fit:contain;
  }

  .scribble{width:95%;height:72%}

  .section{
    padding:74px 0;
  }

  .section-heading{
    grid-template-columns:1fr;
    gap:10px;
    align-items:start;
    margin-bottom:34px;
  }

  .section-heading > div{
    width:100%;
    min-width:0;
  }

  .section-heading .kicker{
    margin:0 0 4px;
    white-space:normal;
  }

  .section-heading h2{
    font-size:clamp(44px,13vw,62px);
  }

  .section-heading p{
    font-size:15px;
  }

  .feature-row{
    padding:26px 0 36px;
    min-height:auto;
  }

  .feature-art{
    order:-1 !important;
    min-height:350px;
  }

  .feature-art::before{
    width:94%;
  }

  .feature-art img{
    max-height:355px;
  }

  .feature-copy h3{
    font-size:clamp(38px,12vw,54px);
  }

  .feature-copy p{font-size:15px}

  .privacy-grid{
    gap:34px;
  }

  .privacy-art{
    padding:0;
    border-radius:0;
    box-shadow:none;
  }

  .privacy-point{
    padding:14px 0;
  }


  .edge-row{
    padding:44px 0 52px;
    gap:14px;
  }

  .edge-art{
    min-height:330px;
  }

  .edge-art::before{
    width:min(92%, 340px);
    box-shadow:7px 7px 0 rgba(17,17,17,.92);
  }

  .edge-art img{
    width:min(100%, 360px);
    max-height:350px;
  }

  .edge-copy h3{
    font-size:clamp(38px,11.5vw,54px);
  }

  .edge-copy p{
    font-size:15px;
  }

  .edge-points{
    margin-top:20px;
  }

  .edge-points li{
    font-size:13px;
  }

  .plans{
    grid-template-columns:1fr;
  }

  .plan{
    padding:26px;
  }

  .price{font-size:58px}

  .faq{
    gap:34px;
  }

  summary{
    font-size:19px;
    padding:20px 0;
  }

  details p{
    font-size:14px;
    margin-right:0;
  }

  .final-cta{
    padding-bottom:82px;
  }

  .cta-box{
    padding:38px 24px 170px;
    border-radius:26px;
    min-height:520px;
    box-shadow:none;
  }

  .cta-box h2{
    font-size:clamp(48px,14vw,68px);
  }

  .cta-box p{
    font-size:15px;
  }

  .cta-box{
    padding:38px 24px 28px;
    min-height:auto;
  }

  .cta-box > div:first-child{
    position:relative;
    z-index:3;
  }

  .cta-art{
    position:relative;
    width:100%;
    right:auto;
    bottom:auto;
    transform:none;
    margin-top:12px;
    opacity:.65;
    z-index:1;
    pointer-events:none;
  }

  .cta-art img{
    width:min(90%, 380px);
    max-height:250px;
    margin-inline:auto;
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
    gap:36px 22px;
  }

  .footer-brand{
    grid-column:1/-1;
  }

  .footer-bottom{
    align-items:flex-start;
    flex-direction:column;
  }

  .footer-bottom-links{
    flex-wrap:wrap;
  }
}


.cookie-notice{
  position:fixed;
  left:18px;
  bottom:18px;
  z-index:120;
  display:none;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  width:min(620px, calc(100% - 36px));
  padding:16px 18px 16px 20px;
  border:1.5px solid rgba(17,17,17,.78);
  border-radius:18px;
  background:rgba(250,247,241,.94);
  color:var(--a391);
  box-shadow:0 18px 54px rgba(17,17,17,.18);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
}

.cookie-notice.is-visible{display:flex}

.cookie-copy{
  min-width:0;
}

.cookie-copy strong{
  display:block;
  margin-bottom:3px;
  font-family:"Space Grotesk",Inter,sans-serif;
  font-size:15px;
  letter-spacing:-.02em;
}

.cookie-copy p{
  margin:0;
  max-width:690px;
  color:var(--a467);
  font-size:12.5px;
  line-height:1.55;
  font-weight:600;
}

.cookie-actions{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:9px;
}

.cookie-link,
.cookie-accept{
  min-height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  font-size:12px;
  font-weight:850;
  cursor:pointer;
}

.cookie-link{
  padding:0 14px;
  border:1.5px solid rgba(17,17,17,.30);
  background:transparent;
  color:var(--a391);
}

.cookie-link:hover{border-color:var(--a391)}

.cookie-accept{
  padding:0 17px;
  border:1.5px solid var(--a391);
  background:var(--a391);
  color:#fff;
}

.cookie-accept:hover{transform:translateY(-1px)}

@media (max-width: 620px){
  .cookie-notice{
    left:10px;
    right:10px;
    bottom:10px;
    width:calc(100% - 20px);
    align-items:stretch;
    flex-direction:column;
    gap:13px;
    padding:15px;
    border-radius:16px;
  }

  .cookie-copy p{font-size:12px}

  .cookie-actions{
    width:100%;
    display:grid;
    grid-template-columns:1fr 1fr;
  }

  .cookie-link,
  .cookie-accept{width:100%}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
}
