:root {
  color-scheme: light;
  font-family: Inter, "Segoe UI", system-ui, -apple-system, sans-serif;
  --ink: #172824;
  --muted: #61716d;
  --line: #d9e5e0;
  --canvas: #f5f9f7;
  --surface: #ffffff;
  --teal: #1f8a70;
  --teal-dark: #12624f;
  --teal-deep: #0d3f34;
  --teal-soft: #e5f4ee;
  --orange: #f9a826;
  --orange-soft: #fff3dc;
  --shadow: 0 18px 55px rgba(25, 76, 62, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  width: min(1180px, calc(100% - 40px));
  align-items: center;
  gap: 32px;
  margin: 18px auto 0;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(217, 229, 224, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 35px rgba(29, 70, 59, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand img {
  object-fit: contain;
}

.site-header nav {
  display: flex;
  gap: 28px;
}

.site-header nav a {
  color: #4f615c;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-header nav a:hover,
.text-link:hover,
.footer-links a:hover {
  color: var(--teal);
}

.site-header > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 49px;
  padding: 0 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
}

.button-small {
  min-height: 38px;
  padding-inline: 15px;
  border-radius: 10px;
  font-size: 12px;
}

.button-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 10px 25px rgba(31, 138, 112, 0.22);
  color: #fff;
}

.button-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.button-quiet {
  border: 1px solid #eed39d;
  background: var(--orange-soft);
  color: #80530b;
}

.button-light {
  background: #fff;
  color: var(--teal-deep);
}

.button-disabled {
  border: 1px solid var(--line);
  background: #edf3f0;
  color: #71817c;
}

.section-shell {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 690px;
  align-items: center;
  gap: 55px;
  padding-block: 85px 100px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 15px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 22px;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
}

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

h1,
h2,
h3 {
  line-height: 1.1;
}

h1 {
  max-width: 590px;
  margin-bottom: 24px;
  font-size: clamp(48px, 5.4vw, 76px);
  letter-spacing: -0.06em;
}

.hero-lead {
  max-width: 575px;
  margin-bottom: 31px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 750;
  text-underline-offset: 4px;
}

.fine-print {
  margin: 16px 0 0;
  color: #83918d;
  font-size: 12px;
}

.product-stage {
  position: relative;
  display: grid;
  min-height: 570px;
  place-items: center;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.glow-one {
  top: 12%;
  right: 0;
  width: 330px;
  height: 330px;
  background: rgba(31, 138, 112, 0.13);
}

.glow-two {
  bottom: 4%;
  left: 0;
  width: 240px;
  height: 240px;
  background: rgba(249, 168, 38, 0.13);
}

.extension-preview {
  position: relative;
  z-index: 2;
  width: min(100%, 475px);
  padding: 18px;
  border: 1px solid #d2e2dc;
  border-radius: 25px;
  background:
    radial-gradient(circle at 100% 0%, rgba(249, 168, 38, 0.1), transparent 210px),
    #f7faf9;
  box-shadow: 0 35px 85px rgba(24, 73, 60, 0.2);
  transform: rotate(1.5deg);
}

.preview-topbar,
.preview-brand,
.deal-card {
  display: flex;
  align-items: center;
}

.preview-topbar {
  justify-content: space-between;
  margin-bottom: 14px;
}

.preview-brand {
  gap: 9px;
}

.preview-brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.preview-brand strong {
  font-size: 15px;
}

.preview-brand small {
  color: var(--muted);
  font-size: 9px;
}

.mini-logo {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.mini-logo img {
  width: 38px;
  height: 38px;
}

.pro-pill {
  padding: 6px 10px;
  border: 1px solid #efd39a;
  border-radius: 999px;
  background: var(--orange-soft);
  color: #80530b;
  font-size: 10px;
  font-weight: 800;
}

.preview-summary {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e7f5f0, #f6fbf9);
}

.preview-summary small,
.deal-label {
  color: var(--teal);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.preview-summary strong {
  margin-block: 2px;
  font-size: 18px;
}

.preview-summary span {
  color: var(--muted);
  font-size: 10px;
}

.deal-card {
  gap: 11px;
  margin-top: 9px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(26, 67, 56, 0.05);
}

.deal-card.featured {
  border-color: #f0d195;
  background: linear-gradient(135deg, #fffdf7, #fff6e4);
}

.deal-rank {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 850;
}

.deal-main {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  line-height: 1.35;
}

.deal-main strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.deal-main > span:last-child {
  overflow: hidden;
  color: var(--muted);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.deal-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: var(--teal-dark);
  line-height: 1.2;
}

.deal-price strong {
  font-size: 18px;
}

.deal-price span {
  color: var(--muted);
  font-size: 8px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 40px));
  gap: 1px;
  margin: 0 auto 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--line);
  box-shadow: 0 10px 35px rgba(29, 70, 59, 0.06);
}

.trust-strip div {
  display: flex;
  padding: 21px 25px;
  background: #fff;
  flex-direction: column;
}

.trust-strip strong {
  font-size: 13px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 11px;
}

.content-section {
  padding-block: 115px;
}

.section-heading {
  max-width: 730px;
  margin-bottom: 48px;
}

.section-heading.narrow {
  max-width: 630px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4.5vw, 58px);
  letter-spacing: -0.052em;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps article {
  position: relative;
  min-height: 260px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 8px 30px rgba(29, 70, 59, 0.055);
}

.step-number {
  position: absolute;
  top: 15px;
  right: 19px;
  color: #d8e4df;
  font-size: 33px;
  font-weight: 850;
}

.step-icon,
.feature-icon {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 13px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 22px;
  font-weight: 800;
}

.steps h3,
.feature-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.steps p,
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.feature-section {
  padding-block: 115px;
  background:
    radial-gradient(circle at 85% 15%, rgba(249, 168, 38, 0.12), transparent 320px),
    var(--teal-deep);
  color: #fff;
}

.eyebrow.light {
  color: #8de0c7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-card {
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.075);
}

.feature-card.feature-large {
  grid-row: span 2;
}

.feature-card p {
  color: #b8cbc5;
}

.feature-icon {
  margin-bottom: 28px;
  background: rgba(95, 210, 176, 0.15);
  color: #8de0c7;
}

.feature-icon.orange {
  background: rgba(249, 168, 38, 0.15);
  color: #ffc76e;
}

.mini-ranking {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 14px;
  margin-top: 35px;
  padding: 18px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.075);
}

.mini-ranking span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: rgba(95, 210, 176, 0.15);
  color: #8de0c7;
  font-size: 10px;
  font-weight: 800;
}

.mini-ranking strong {
  align-self: center;
  color: #fff;
  font-size: 17px;
}

.mini-ranking small {
  color: #a9bdb7;
  font-size: 9px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 400px));
  justify-content: center;
  gap: 20px;
}

.price-card {
  display: flex;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(29, 70, 59, 0.07);
  flex-direction: column;
}

.price-card.pro-card {
  position: relative;
  border: 2px solid var(--teal);
  background:
    radial-gradient(circle at 100% 0%, rgba(249, 168, 38, 0.13), transparent 190px),
    #fff;
}

.popular {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: #81530a;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.plan-name {
  margin-bottom: 17px;
  font-size: 15px;
  font-weight: 800;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 5px;
}

.price strong {
  font-size: 39px;
  letter-spacing: -0.05em;
}

.price span,
.annual-option {
  color: var(--muted);
  font-size: 12px;
}

.annual-option {
  min-height: 25px;
  margin-bottom: 20px;
}

.price-card ul {
  display: grid;
  gap: 12px;
  min-height: 228px;
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 25px;
  color: #50615c;
  font-size: 14px;
}

.price-card li::before {
  position: absolute;
  left: 0;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-dark);
  content: "✓";
  font-size: 9px;
  font-weight: 900;
}

.price-card > small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
}

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

.faq-list details {
  padding: 0 19px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.faq-list summary {
  padding: 18px 30px 18px 0;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  float: right;
  margin-right: -20px;
  color: var(--teal);
  content: "+";
  font-size: 21px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 20px auto 90px;
  padding: 75px 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 15% 0%, rgba(249, 168, 38, 0.17), transparent 270px),
    linear-gradient(145deg, #155f4d, #0d3f34);
  color: #fff;
  text-align: center;
}

.final-cta > div {
  max-width: 690px;
  margin-inline: auto;
}

.final-cta img {
  margin-bottom: 20px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto 28px;
  color: #bfd0cb;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 2fr;
  width: min(1120px, calc(100% - 40px));
  gap: 60px;
  margin-inline: auto;
  padding: 20px 0 35px;
}

.footer-brand p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.4fr;
  gap: 30px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-links strong {
  margin-bottom: 4px;
  font-size: 12px;
}

.footer-links a {
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  margin-top: 25px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #82908c;
  font-size: 10px;
}

.legal-page {
  background:
    radial-gradient(circle at 100% 0%, rgba(31, 138, 112, 0.09), transparent 430px),
    var(--canvas);
}

.legal-header,
.legal-footer,
.legal-shell {
  width: min(850px, calc(100% - 40px));
  margin-inline: auto;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-header > a:last-child {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.legal-shell {
  padding-block: 85px;
}

.legal-shell > h1 {
  max-width: 760px;
  margin-bottom: 8px;
  font-size: clamp(45px, 7vw, 70px);
}

.legal-date {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 13px;
}

.legal-summary {
  margin-bottom: 55px;
  padding: 24px;
  border: 1px solid #c9e1d8;
  border-radius: 17px;
  background: var(--teal-soft);
}

.legal-summary strong {
  display: block;
  margin-bottom: 5px;
  color: var(--teal-dark);
}

.legal-summary p {
  margin: 0;
  color: #43645b;
}

.legal-shell section {
  margin-bottom: 38px;
}

.legal-shell section h2 {
  margin-bottom: 12px;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.legal-shell section p,
.legal-shell section li {
  color: #53645f;
  font-size: 15px;
}

.legal-shell section p {
  margin-bottom: 13px;
}

.legal-shell section li + li {
  margin-top: 7px;
}

.legal-shell section a {
  color: var(--teal-dark);
  font-weight: 650;
}

.legal-footer {
  display: flex;
  justify-content: space-between;
  padding-block: 25px 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.legal-footer span:last-child {
  display: flex;
  gap: 16px;
}

.legal-footer a {
  text-decoration: none;
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 70px;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .product-stage {
    min-height: 540px;
  }

  .eyebrow {
    justify-content: center;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

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

  .steps article {
    min-height: auto;
  }

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

  .feature-card.feature-large {
    grid-row: auto;
  }

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

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 10px;
  }

  .site-header .button {
    display: none;
  }

  .section-shell,
  .trust-strip,
  .final-cta,
  .site-footer {
    width: calc(100% - 28px);
  }

  .hero {
    min-height: auto;
    padding-block: 65px 75px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .product-stage {
    width: calc(100% + 6px);
    min-height: 480px;
  }

  .extension-preview {
    padding: 13px;
    transform: none;
  }

  .deal-price strong {
    font-size: 15px;
  }

  .trust-strip div {
    padding: 17px 20px;
  }

  .content-section,
  .feature-section {
    padding-block: 80px;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: 39px;
  }

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

  .faq-section {
    gap: 20px;
  }

  .final-cta {
    padding: 55px 20px;
    border-radius: 23px;
  }

  .site-footer {
    gap: 35px;
  }

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

  .footer-links div:last-child {
    grid-column: 1 / -1;
  }

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

  .legal-shell {
    padding-block: 60px;
  }

  .legal-footer {
    gap: 12px;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
