:root {
  --ink: #071a17;
  --muted: #61746e;
  --paper: #fbfaf6;
  --cream: #f7f3e9;
  --line: #dfe6df;
  --coral: #f1765d;
  --green: #315f53;
  --gold: #f4c95d;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 0%, rgba(244, 201, 93, .25), transparent 30%),
    linear-gradient(180deg, #f7f3e9 0%, #edf5ef 100%);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(18px, 5vw, 72px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 900; }
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--coral), var(--green));
}
.nav-links { display: flex; flex-wrap: wrap; gap: 14px; color: #52655f; font-size: 13px; font-weight: 800; }
.nav-links a { text-decoration: none; }
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  color: white;
  background: var(--coral);
  box-shadow: 0 16px 35px rgba(241, 118, 93, .22);
  text-decoration: none;
  font-weight: 900;
}
.cta.secondary {
  color: var(--ink);
  background: white;
  box-shadow: none;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .75fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  padding: 46px clamp(18px, 5vw, 72px) 70px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #477367;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: "DM Serif Display", Georgia, serif; font-weight: 400; }
h1 {
  max-width: 880px;
  margin: 18px 0 18px;
  font-size: clamp(52px, 8vw, 104px);
  line-height: .92;
  letter-spacing: -3px;
}
h1 em, h2 em { color: var(--coral); font-style: normal; }
.hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-card {
  min-height: 460px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 34px;
  color: white;
  background:
    linear-gradient(160deg, rgba(7,26,23,.1), rgba(7,26,23,.8)),
    linear-gradient(135deg, #315f53, #071a17);
  box-shadow: 0 34px 90px rgba(7,26,23,.2);
}
.hero-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.hero-card li {
  padding: 14px 15px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
}
.hero-card b { display: block; margin-bottom: 4px; }
.hero-card span { color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.5; }
.section {
  padding: 70px clamp(18px, 5vw, 72px);
}
.section.alt { background: rgba(255,255,255,.42); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.section h2 {
  max-width: 760px;
  margin: 8px 0 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -1.8px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.68);
}
.card h3 { margin: 0 0 8px; font-size: 28px; }
.card p, .card li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.card ul { margin: 12px 0 0; padding-left: 18px; }
.comparison {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.7);
}
.comparison-row {
  display: grid;
  grid-template-columns: .75fr 1fr 1.1fr;
  border-top: 1px solid var(--line);
}
.comparison-row:first-child { border-top: 0; }
.comparison-row > * {
  margin: 0;
  padding: 18px 20px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.comparison-row > *:first-child { border-left: 0; }
.comparison-row.header {
  color: #315f53;
  background: #e5f1eb;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.comparison-row b { color: var(--ink); }
.comparison-row p:last-child {
  color: #315f50;
  background: rgba(229,241,235,.58);
  font-weight: 800;
}
.faq {
  display: grid;
  gap: 12px;
}
.faq details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
}
.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}
.faq p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}
.banner {
  margin: 30px clamp(18px, 5vw, 72px) 70px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 34px;
  color: white;
  background: linear-gradient(135deg, var(--coral), #315f53);
  box-shadow: 0 30px 80px rgba(49,95,83,.22);
}
.banner h2 { margin: 0 0 12px; font-size: clamp(38px, 5vw, 70px); line-height: 1; }
.banner p { max-width: 720px; color: rgba(255,255,255,.82); line-height: 1.7; }
.banner .cta { background: white; color: var(--ink); box-shadow: none; }
.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: #62716c;
  font-size: 13px;
}
.footer nav { display: flex; flex-wrap: wrap; gap: 12px; }
.footer a { font-weight: 800; text-decoration: none; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-card { min-height: 0; }
  .grid { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; }
  .comparison-row, .comparison-row.header { grid-template-columns: 1fr; }
  .comparison-row.header { display: none; }
  .comparison-row { padding: 12px 0; }
  .comparison-row > * { border-left: 0; padding: 6px 16px; }
  .comparison-row b::before, .comparison-row p::before {
    display: block;
    margin-bottom: 3px;
    color: #8a9691;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
  }
  .comparison-row b::before { content: "Feature"; }
  .comparison-row p:first-of-type::before { content: "Regular planner"; }
  .comparison-row p:last-child::before { content: "Tripwyn"; }
  .comparison-row p:last-child {
    margin: 6px 16px 0;
    padding: 11px 12px;
    border-radius: 12px;
  }
  .footer { flex-direction: column; }
}
