:root {
  --bg: #ffffff;
  --surface: #f3fbfe;
  --surface-strong: #e4f7fc;
  --text: #10272e;
  --muted: #5e737a;
  --line: #d9eaf0;
  --teal: #17a085;
  --teal-dark: #0f7564;
  --blue: #2286b7;
  --dark: #0b2530;
  --shadow: 0 18px 42px rgba(11, 37, 48, .12);
  --radius: 8px;
  --container: 1160px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(100% - 32px, var(--container));
  min-height: 72px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 8px;
  color: #fff;
  background: var(--dark);
  font-size: 14px;
}

.site-menu {
  display: none;
  position: absolute;
  top: 72px;
  left: 16px;
  right: 16px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-menu.is-open {
  display: grid;
}

.site-menu a {
  padding: 12px 10px;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  color: var(--teal);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--dark);
}

.nav-cta {
  display: none;
}

.hero {
  padding: 54px 0 58px;
  background: linear-gradient(180deg, #f5fbfe 0%, #ffffff 76%);
}

.hero-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(34px, 10vw, 66px);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 7vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.25;
}

.hero-lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 4.5vw, 22px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 22px;
}

.hero-actions.center {
  justify-content: center;
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 12px 24px rgba(23, 160, 133, .24);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--teal-dark);
}

.button.primary.blue {
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(34, 134, 183, .2);
}

.button.secondary {
  color: var(--dark);
  background: #fff;
  border-color: var(--line);
}

.button.secondary.light {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, .55);
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--blue);
}

.hero-visual {
  max-width: 610px;
  margin-inline: auto;
}

.hero-visual img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  border-radius: 8px;
}

.section {
  padding: 64px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading p,
.split p,
.benefits p,
.source-card p,
.order-grid p,
.faq-grid p,
.site-footer p {
  color: var(--muted);
}

.product-grid,
.source-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.product-grid article,
.source-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(11, 37, 48, .06);
}

.product-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.icon {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: var(--surface-strong);
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
}

.glass::before,
.edge::before,
.privacy::before,
.matte::before {
  inset: 7px 12px;
  border: 2px solid var(--blue);
  border-radius: 6px;
  background: rgba(255, 255, 255, .48);
}

.edge::after {
  inset: 11px 8px;
  border: 2px solid var(--teal);
  border-radius: 8px;
}

.privacy::before {
  background: linear-gradient(90deg, rgba(16, 39, 46, .9), rgba(255, 255, 255, .35));
}

.camera::before {
  inset: 11px;
  border: 2px solid var(--blue);
  border-radius: 50%;
}

.camera::after {
  inset: 18px;
  border-radius: 50%;
  background: var(--teal);
}

.matte::after {
  inset: 13px 16px;
  background: repeating-linear-gradient(135deg, var(--teal) 0 3px, transparent 3px 7px);
}

.carton::before {
  inset: 10px 8px 12px;
  border: 2px solid var(--blue);
  border-radius: 4px;
}

.carton::after {
  left: 12px;
  right: 12px;
  top: 14px;
  height: 2px;
  background: var(--teal);
}

.band {
  background: var(--surface);
}

.split,
.benefits,
.order-grid,
.faq-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.owner-list {
  display: grid;
  gap: 12px;
}

.owner-list div {
  padding: 16px 18px;
  background: #fff;
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(11, 37, 48, .06);
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-list article {
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.benefit-list strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
}

.sources-section {
  background: var(--dark);
  color: #fff;
}

.sources-section .section-heading p,
.source-card p {
  color: #c7dbe1;
}

.source-card {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
}

.source-card .button {
  margin-top: 8px;
}

.order-section {
  background: #fbfdfe;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 800;
}

.steps span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
}

.faq-section {
  background: var(--surface);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 18px;
  font-weight: 900;
  list-style: none;
}

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

summary::after {
  content: "+";
  float: right;
  color: var(--teal);
  font-size: 22px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 18px 18px;
  margin: 0;
  color: var(--muted);
}

.final-cta {
  padding: 58px 0;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--teal-dark), var(--dark));
}

.final-cta h2 {
  max-width: 760px;
  margin-inline: auto;
}

.site-footer {
  padding: 54px 0 0;
  color: #d7e8ed;
  background: #071a22;
}

.footer-grid {
  display: grid;
  gap: 30px;
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
}

.site-footer h2 {
  font-size: 24px;
}

.site-footer h3 {
  font-size: 16px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: #b9cdd3;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.footer-bottom {
  margin-top: 38px;
  padding: 18px 16px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #b9cdd3;
}

.footer-bottom p {
  margin: 0;
}

@media (min-width: 560px) {
  .container,
  .nav {
    width: min(100% - 48px, var(--container));
  }

  .product-grid,
  .source-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-list {
    grid-template-columns: repeat(3, max-content);
  }
}

@media (min-width: 820px) {
  .hero {
    padding: 72px 0 78px;
  }

  .section {
    padding: 86px 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 520px);
    gap: 44px;
  }

  .menu-toggle {
    display: none;
  }

  .site-menu {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .site-menu a {
    padding: 8px 0;
    font-size: 13px;
  }

  .nav {
    grid-template-columns: auto 1fr auto;
  }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    color: #fff;
    background: var(--dark);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split,
  .faq-grid,
  .order-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  }

  .owner-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits {
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 42px;
  }

  .benefit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.35fr .8fr .9fr 1fr;
  }
}

@media (max-width: 380px) {
  .container,
  .nav {
    width: min(100% - 24px, var(--container));
  }

  .brand {
    font-size: 13px;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
