 :root {
   color-scheme: light;
   --ink: #14161a;
   --muted: #59636f;
   --paper: #f4f1ec;
   --accent: #1a6b6d;
   --accent-soft: #e0f0ee;
   --highlight: #f9d26b;
   --line: #d9d3c9;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: #fbfaf7;
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   height: auto;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 header {
   border-bottom: 1px solid var(--line);
   background: #fff;
 }
 
 .top-nav {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 18px 8vw;
   gap: 24px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 1px;
   text-transform: uppercase;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   font-size: 0.95rem;
 }
 
 .nav-links a {
   padding-bottom: 4px;
   border-bottom: 2px solid transparent;
 }
 
 .nav-links a:hover {
   border-color: var(--accent);
 }
 
 .section {
   padding: 70px 8vw;
 }
 
 .section.paper {
   background: var(--paper);
 }
 
 .section.accent {
   background: var(--accent-soft);
 }
 
 .section.tight {
   padding-top: 40px;
   padding-bottom: 40px;
 }
 
 .headline {
   font-size: clamp(2rem, 3vw, 3.3rem);
   margin: 0 0 16px;
 }
 
 .subhead {
   color: var(--muted);
   max-width: 540px;
 }
 
 .split {
   display: flex;
   flex-wrap: wrap;
   gap: 40px;
   align-items: center;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .column {
   flex: 1 1 280px;
   min-width: 260px;
 }
 
 .aside {
   flex: 0 1 220px;
   background: #fff;
   border: 1px solid var(--line);
   padding: 18px;
 }
 
 .feature-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .feature-card {
   flex: 1 1 260px;
   background: #fff;
   border: 1px solid var(--line);
   padding: 22px;
 }
 
 .feature-card img {
   margin-bottom: 14px;
   border-radius: 12px;
 }
 
 .cta {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   background: var(--accent);
   color: #fff;
   font-weight: 600;
 }
 
 .cta.secondary {
   background: transparent;
   color: var(--accent);
 }
 
 .cta.ghost {
   background: #fff;
   color: var(--ink);
   border-color: var(--line);
 }
 
 .inline-cta {
   color: var(--accent);
   font-weight: 600;
   border-bottom: 1px solid var(--accent);
 }
 
 .magazine-row {
   display: flex;
   flex-wrap: wrap;
   gap: 30px;
 }
 
 .magazine-main {
   flex: 2 1 320px;
 }
 
 .magazine-side {
   flex: 1 1 220px;
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .quote {
   background: #fff;
   border-left: 4px solid var(--highlight);
   padding: 18px;
   font-style: italic;
 }
 
 .pricing-list {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .price-item {
   display: flex;
   justify-content: space-between;
   align-items: baseline;
   gap: 20px;
   padding-bottom: 12px;
   border-bottom: 1px dashed var(--line);
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .form-shell {
   display: flex;
   flex-direction: column;
   gap: 16px;
   background: #fff;
   border: 1px solid var(--line);
   padding: 28px;
 }
 
 .form-shell label {
   font-weight: 600;
 }
 
 .form-shell input,
 .form-shell select,
 .form-shell textarea {
   padding: 12px;
   border-radius: 8px;
   border: 1px solid var(--line);
   font: inherit;
 }
 
 .form-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .form-row > * {
   flex: 1 1 180px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   background: var(--highlight);
   color: var(--ink);
   border: 1px solid #e4b653;
   padding: 12px 18px;
   border-radius: 999px;
   font-weight: 700;
   z-index: 20;
 }
 
 .footer {
   background: #14161a;
   color: #f7f5f0;
   padding: 40px 8vw;
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .footer a {
   color: #f7f5f0;
 }
 
 .footer .small {
   font-size: 0.9rem;
   color: #c7c0b4;
 }
 
 .small {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: #fff;
   border: 1px solid var(--line);
   padding: 16px;
   max-width: 320px;
   z-index: 30;
   display: none;
 }
 
 .cookie-banner.active {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .hero-image {
   border-radius: 20px;
   overflow: hidden;
 }
 
 .tag {
   display: inline-flex;
   padding: 6px 12px;
   border-radius: 999px;
   background: #fff;
   border: 1px solid var(--line);
   font-size: 0.85rem;
 }
 
 @media (max-width: 860px) {
   .top-nav {
     flex-direction: column;
     align-items: flex-start;
   }
 
   .sticky-cta {
     bottom: 90px;
   }
 }
