:root {
  --ink: #10202a;
  --paper: #f4fbfe;
  --white: #ffffff;
  --yellow: #e6f6fb;
  --pink: #30aee4;
  --blue: #8bd4ed;
  --green: #d5e8ef;
  --orange: #c4d7df;
  --shadow: 7px 7px 0 var(--ink);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Space Grotesk", Arial, sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

main,
section {
  scroll-margin-top: 96px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(16px, 4vw, 48px);
  background: var(--paper);
  border-bottom: 4px solid var(--ink);
}

.brand,
.site-header nav,
.hero-actions,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-mark {
  display: grid;
  width: 96px;
  height: 44px;
  place-items: center;
  background: transparent;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header nav {
  gap: clamp(12px, 3vw, 30px);
  font-weight: 700;
}

.site-header nav a {
  border-bottom: 3px solid transparent;
}

.site-header nav a:hover {
  border-color: var(--ink);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.header-cta,
.button.primary {
  background: var(--pink);
}

.button.secondary {
  background: var(--white);
}

.header-cta:hover,
.button:hover,
.choice:hover,
.feature:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: min(610px, calc(100vh - 150px));
  padding: clamp(24px, 4vw, 42px) clamp(16px, 4vw, 48px) 26px;
}

.eyebrow {
  margin: 0 0 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 5.1vw, 4.5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.hero-text,
.builder-copy p {
  max-width: 620px;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  font-weight: 500;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero-visual {
  position: relative;
  min-height: 390px;
  padding: 18px;
  background: var(--blue);
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 12px;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 6px;
}

.browser-bar span {
  width: 14px;
  height: 14px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.browser-bar span:nth-child(1) {
  background: var(--pink);
}

.browser-bar span:nth-child(2) {
  background: var(--yellow);
}

.browser-bar span:nth-child(3) {
  background: var(--green);
}

.browser-bar strong {
  margin-left: auto;
  font-size: 0.9rem;
}

.mock-page {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 14px;
  min-height: 290px;
  margin-top: 16px;
}

.mock-main,
.mock-side,
.floating-ticket {
  border: 3px solid var(--ink);
  border-radius: 6px;
  box-shadow: 5px 5px 0 var(--ink);
}

.mock-main {
  padding: 24px;
  background: var(--yellow);
}

.mock-main p {
  display: inline-block;
  padding: 5px 8px;
  background: var(--green);
  border: 3px solid var(--ink);
  font-weight: 700;
}

.mock-main h2 {
  margin: 30px 0 24px;
  font-size: clamp(2.1rem, 4.5vw, 4.4rem);
}

.mock-button {
  width: 150px;
  height: 48px;
  background: var(--pink);
  border: 3px solid var(--ink);
  border-radius: 6px;
}

.typing-wrap {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-bottom: 18px;
  padding: 8px 14px;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  overflow: hidden;
}

#typingText::after {
  content: "|";
  margin-left: 3px;
  animation: blink 0.8s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.mock-side {
  display: grid;
  gap: 12px;
  padding: 12px;
  background: var(--white);
}

.mock-side div {
  background: var(--orange);
  border: 3px solid var(--ink);
}

.mock-side div:nth-child(2) {
  background: var(--green);
}

.mock-side div:nth-child(3) {
  background: var(--pink);
}

.floating-ticket {
  position: absolute;
  right: -22px;
  bottom: 34px;
  max-width: 230px;
  padding: 16px;
  background: var(--white);
}

.floating-ticket strong,
.floating-ticket span {
  display: block;
}

.strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(130px, 1fr));
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  background: var(--green);
  overflow-x: auto;
}

.strip span {
  padding: 16px;
  border-right: 4px solid var(--ink);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.section,
.builder-section {
  padding: clamp(48px, 7vw, 90px) clamp(16px, 4vw, 48px);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 30px;
}

.package-grid,
.steps,
.proof-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.package-card,
.steps article,
.proof-grid article,
.faq-grid details,
.story-card,
.panel,
.quote-card {
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.package-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background: var(--white);
}

.package-card.featured {
  background: var(--yellow);
}

.package-card strong {
  display: block;
  margin: 20px 0;
  font-size: 3rem;
  line-height: 1;
}

ul {
  margin: 0;
  padding-left: 20px;
  font-weight: 700;
}

.builder-section {
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(16, 16, 16, 0.08) 1px, transparent 1px),
    var(--orange);
  background-size: 28px 28px;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}

.builder {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: 22px;
  align-items: start;
}

.panel,
.quote-card {
  padding: 20px;
  background: var(--white);
}

.package-options,
.feature-list {
  display: grid;
  gap: 14px;
}

.choice,
.feature {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 6px;
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

input[type="radio"],
input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--ink);
}

.choice span,
.feature span {
  display: grid;
}

small {
  font-size: 0.9rem;
  font-weight: 500;
}

.feature em {
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.quote-card {
  position: sticky;
  top: 92px;
  background: var(--ink);
  color: var(--white);
}

.total {
  font-size: clamp(3rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 0.95;
}

.monthly {
  min-height: 26px;
  margin: 10px 0 18px;
  font-weight: 700;
}

dl {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
}

dt,
dd {
  margin: 0;
}

.full {
  width: 100%;
}

.quote-card .button.primary {
  background: var(--white);
  color: var(--ink);
}

.why-section {
  background: var(--green);
  border-top: 4px solid var(--ink);
}

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

.proof-grid article {
  min-height: 280px;
  padding: 20px;
  background: var(--white);
}

.proof-grid article:nth-child(2) {
  background: var(--yellow);
}

.proof-grid article:nth-child(3) {
  background: var(--pink);
}

.proof-grid article:nth-child(4) {
  background: var(--blue);
}

.proof-grid span {
  display: inline-grid;
  min-width: 54px;
  height: 54px;
  margin-bottom: 24px;
  place-items: center;
  padding: 0 10px;
  background: var(--paper);
  border: 3px solid var(--ink);
  font-weight: 700;
}

.story {
  background: var(--paper);
}

.story-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: start;
  padding: clamp(22px, 5vw, 46px);
  background: var(--blue);
}

.story-badge {
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 16px;
  background: var(--yellow);
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}

blockquote {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2.55rem);
  font-weight: 700;
  line-height: 1.12;
}

.story-meta {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-top: -16px;
  padding-top: 18px;
  border-top: 4px solid var(--ink);
}

.story-meta span {
  font-weight: 700;
}

.steps article {
  padding: 22px;
  background: var(--blue);
}

.steps article:nth-child(2) {
  background: var(--pink);
}

.steps article:nth-child(3) {
  background: var(--green);
}

.steps span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  background: var(--white);
  border: 3px solid var(--ink);
  font-weight: 700;
}

.faq-section {
  background: var(--yellow);
  border-top: 4px solid var(--ink);
}

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

.faq-grid details {
  padding: 18px 20px;
  background: var(--white);
}

.faq-grid summary {
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 700;
}

.faq-grid p {
  margin: 14px 0 0;
  font-weight: 500;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(34px, 6vw, 68px) clamp(16px, 4vw, 48px);
  background: var(--pink);
  border-top: 4px solid var(--ink);
}

.final-cta h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.final-cta .button {
  flex: 0 0 auto;
  background: var(--yellow);
}

footer {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(16px, 4vw, 48px);
  background: #050505;
  color: var(--white);
}

footer a {
  color: var(--yellow);
}

@media (max-width: 1020px) {
  .hero,
  .builder {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .quote-card {
    position: static;
  }

  .package-grid,
  .steps,
  .proof-grid,
  .faq-grid,
  .story-card {
    grid-template-columns: 1fr;
  }

  .story-meta {
    grid-column: auto;
    margin-top: 0;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 0.9rem;
  }

  .header-cta {
    width: 100%;
  }

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

  .hero-visual {
    min-height: 380px;
    padding: 12px;
  }

  .mock-page {
    grid-template-columns: 1fr;
    min-height: 250px;
  }

  .mock-side {
    grid-template-columns: repeat(3, 1fr);
    min-height: 70px;
  }

  .floating-ticket {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

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

  .feature em {
    grid-column: 2;
  }
}
