:root {
  color: #17302f;
  background: #eef3ec;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-synthesis: none;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  --canvas: #eef3ec;
  --surface: #fbfcf7;
  --surface-warm: #fbf6e9;
  --ink: #17302f;
  --muted: #59706b;
  --teal: #2f7f82;
  --teal-deep: #1d5960;
  --gold: #c9963f;
  --cream: #f7f1e2;
  --line: rgba(23, 48, 47, 0.13);
  --shadow: 0 22px 70px rgba(23, 48, 47, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 92% 2%, rgba(201, 150, 63, 0.16), transparent 31rem),
    radial-gradient(circle at 0% 42%, rgba(47, 127, 130, 0.1), transparent 30rem),
    var(--canvas);
}

a {
  color: var(--teal-deep);
}

a:focus-visible {
  outline: 3px solid rgba(201, 150, 63, 0.72);
  outline-offset: 4px;
}

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

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(238, 243, 236, 0.92);
  backdrop-filter: blur(16px);
}

.site-header .shell {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(23, 48, 47, 0.12);
}

.brand span {
  font: 500 1.55rem/1 "Fraunces", Georgia, serif;
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--teal-deep);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--teal-deep);
  box-shadow: 0 12px 28px rgba(29, 89, 96, 0.2);
  color: var(--cream);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  box-shadow: 0 16px 34px rgba(29, 89, 96, 0.27);
  transform: translateY(-2px);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: none;
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: center;
  padding: clamp(72px, 11vw, 126px) 0 clamp(68px, 9vw, 110px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--teal-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: var(--gold);
  content: "";
}

h1,
h2,
.quote {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

h1 em,
h2 em {
  color: var(--teal);
  font-weight: 300;
}

.hero-lede {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.27rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-card {
  padding: clamp(30px, 5vw, 46px);
  border-radius: 30px 30px 30px 9px;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 150, 63, 0.26), transparent 42%),
    linear-gradient(145deg, #23646c 0%, #164850 100%);
  box-shadow: var(--shadow);
  color: var(--cream);
}

.hero-card img {
  width: 62px;
  height: 62px;
  border-radius: 17px;
}

.hero-card h2 {
  margin: 24px 0 12px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.16;
}

.hero-card p {
  margin: 0;
  color: rgba(247, 241, 226, 0.8);
}

.hero-card ul,
.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-card li,
.check-list li {
  position: relative;
  padding-left: 27px;
}

.hero-card li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--gold);
  content: "✓";
  font-weight: 900;
}

.section {
  padding: clamp(66px, 9vw, 108px) 0;
  border-top: 1px solid var(--line);
}

.section.soft {
  background: rgba(255, 255, 255, 0.34);
}

.section-head {
  max-width: 780px;
  margin-bottom: 38px;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.6vw, 3.85rem);
  line-height: 1.07;
  letter-spacing: -0.042em;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.03rem;
  line-height: 1.35;
}

.section-head > p,
.content > p,
.card p,
.comparison-note,
.fine-print {
  color: var(--muted);
}

.section-head > p {
  margin: 18px 0 0;
  font-size: 1.05rem;
}

.content {
  max-width: 780px;
}

.content h2 {
  margin-top: 54px;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
}

.content h2:first-child {
  margin-top: 0;
}

.content h3 {
  margin-top: 32px;
  font-size: 1.18rem;
}

.content p,
.content li {
  font-size: 1.03rem;
}

.content p {
  margin: 15px 0;
}

.content ul,
.content ol {
  padding-left: 1.35rem;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}

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

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

.card {
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(251, 252, 247, 0.82);
  box-shadow: 0 12px 38px rgba(23, 48, 47, 0.055);
}

.card .number {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 127, 130, 0.11);
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 900;
}

.card p {
  margin: 10px 0 0;
}

.quote {
  margin: 42px 0;
  padding: 30px 34px;
  border-left: 3px solid var(--gold);
  background: var(--surface-warm);
  color: var(--ink);
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  line-height: 1.45;
}

.quote cite {
  display: block;
  margin-top: 11px;
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.notice {
  margin: 30px 0;
  padding: 20px 22px;
  border: 1px solid rgba(201, 150, 63, 0.3);
  border-radius: 14px;
  background: rgba(251, 246, 233, 0.75);
  color: #4f5f5b;
  font-size: 0.92rem;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 44px rgba(23, 48, 47, 0.06);
}

.comparison {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.comparison th,
.comparison td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison thead th {
  background: rgba(47, 127, 130, 0.07);
  font-size: 0.86rem;
}

.comparison tbody th {
  width: 20%;
  color: var(--muted);
  font-size: 0.83rem;
}

.comparison td {
  width: 26.666%;
}

.comparison tr:last-child th,
.comparison tr:last-child td {
  border-bottom: 0;
}

.comparison .renew {
  background: rgba(201, 150, 63, 0.08);
}

.comparison strong {
  display: block;
  margin-bottom: 5px;
}

.comparison-note,
.fine-print {
  font-size: 0.82rem;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
}

.cta {
  padding: clamp(48px, 7vw, 76px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 150, 63, 0.27), transparent 36%),
    linear-gradient(145deg, #23646c, #173f45);
  box-shadow: var(--shadow);
  color: var(--cream);
  text-align: center;
}

.cta h2 {
  color: inherit;
}

.cta p {
  max-width: 650px;
  margin: 17px auto 28px;
  color: rgba(247, 241, 226, 0.8);
}

.cta .button {
  background: var(--cream);
  color: var(--ink);
}

.site-footer {
  padding: 42px 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.site-footer .shell {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  color: inherit;
}

@media (max-width: 820px) {
  .site-nav a:not(.button) {
    display: none;
  }

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

  .hero-card {
    max-width: 620px;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  .site-header .shell {
    min-height: 74px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .site-nav .button {
    min-height: 42px;
    padding: 0 16px;
  }

  .hero {
    padding-top: 56px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

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

  .section {
    padding: 58px 0;
  }
}
