/* ===== Levon - Home Page ===== */

:root {
  --primary-950: #082949;
  --primary-900: #0C416E;
  --primary-800: #084E84;
  --primary-700: #0463AE;
  --primary-600: #0373C6;
  --primary-400: #39ADF7;
  --primary-300: #7EC8FB;
  --primary-200: #BAE0FD;
  --primary-100: #E0EFFE;
  --primary-50: #F0F8FF;

  --secondary-600: #D3620C;
  --secondary-500: #EF8511;
  --secondary-200: #FAD98D;
  --secondary-100: #FDEDC8;
  --secondary-50: #FEF9EC;

  --white: #FFFFFF;
  --white-50: #FAFAFA;
  --white-300: #D6D6D6;

  --font-heading: 'Bricolage Grotesque', serif;
  --font-body: 'DM Sans', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--primary-950);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Utility: badge pill ===== */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px 12px;
  background: var(--white);
  border: 1px solid var(--secondary-200);
  border-radius: 8px;
  color: var(--secondary-500);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  width: fit-content;
}

.badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.badge.badge--blue {
  border-color: var(--primary-200);
  color: var(--primary-600);
}

.eyebrow-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 24px;
}

.eyebrow-group.center {
  align-items: center;
  text-align: center;
}

.eyebrow-group h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  line-height: 46px;
  color: var(--primary-950);
}

.eyebrow-group.on-dark h2 {
  color: var(--white);
}

.section-sub {
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-800);
  max-width: 588px;
}

.eyebrow-group.center .section-sub {
  margin: 0 auto;
}

.on-dark .section-sub {
  color: var(--white-50);
}

/* pill feature tags */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: var(--white);
  border: 1px solid var(--primary-200);
  border-radius: 8px;
  color: var(--primary-600);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
}

.tag svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: var(--primary-600);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 24px;
  height: 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-family: var(--font-body);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary-blue {
  background: var(--primary-600);
  color: var(--white);
}
.btn-primary-blue:hover {
  background: var(--primary-700);
}

.btn-secondary-blue {
  background: var(--white);
  border-color: var(--primary-600);
  color: var(--primary-600);
  gap: 8px;
}
.btn-secondary-blue:hover {
  background: var(--primary-50);
}

.btn-arrow-chip {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-100);
  border-radius: 12px;
}
.btn-arrow-chip svg {
  width: 10px;
  height: 10px;
  fill: var(--primary-600);
}

.btn-primary-orange {
  background: var(--secondary-500);
  color: var(--white);
}
.btn-primary-orange:hover {
  background: var(--secondary-600);
}

.btn-secondary-orange {
  border-color: var(--secondary-500);
  background: transparent;
  color: var(--secondary-500);
}
.btn-secondary-orange:hover {
  background: var(--secondary-50);
}

.btn-white {
  background: var(--white);
  color: var(--primary-900);
}
.btn-white:hover {
  background: var(--primary-50);
}

.btn-dark-outline {
  background: var(--primary-900);
  border-color: var(--primary-700);
  color: var(--white);
  gap: 8px;
}
.btn-dark-outline:hover {
  background: var(--primary-950);
}

/* ===== Top Navigation ===== */
.top-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  box-shadow: 0 4px 8px rgba(5, 98, 171, 0.08);
  z-index: 100;
}

.top-nav .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--primary-950);
  letter-spacing: -0.5px;
}
.logo span {
  color: var(--secondary-500);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-weight: 600;
  font-size: 16px;
  color: var(--primary-800);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.15s ease;
}

.nav-link:hover {
  color: var(--secondary-500);
}

.nav-link.active {
  color: var(--primary-800);
  border-bottom: 1px solid var(--secondary-500);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary-950);
  border-radius: 2px;
}

/* ===== Hero / Banner Section ===== */
.hero {
  position: relative;
  padding: 100px 0 160px;
  overflow: hidden;
  background: var(--white);
}

.hero .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
}
.hero .blob-1 {
  width: 568px;
  height: 567px;
  left: -100px;
  top: -50px;
  background: var(--primary-100);
}
.hero .blob-2 {
  width: 401px;
  height: 401px;
  right: 30%;
  top: 200px;
  background: var(--secondary-100);
}
.hero .blob-3 {
  width: 561px;
  height: 561px;
  right: -150px;
  top: -80px;
  background: var(--primary-100);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 690px) 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-heading-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  color: var(--primary-950);
  max-width: 690px;
}

.hero p.lead {
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-800);
  max-width: 486px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image .image-frame {
  width: 100%;
  aspect-ratio: 896 / 720;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary-100), var(--secondary-100));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(8, 41, 73, 0.12);
}

.hero-image .image-frame svg {
  width: 60%;
  height: 60%;
  opacity: 0.5;
}

/* ===== Start Wherever You Are ===== */
.start-wherever {
  padding: 80px 0 40px;
  text-align: center;
}

/* ===== Book Workspace (sticky scroll) ===== */
.book-workspace {
  position: relative;
  padding: 80px 0;
  background: var(--primary-950);
  overflow: hidden;
}

.book-workspace .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(300px);
  background: var(--white);
  pointer-events: none;
}
.book-workspace .blob-1 {
  width: 298px;
  height: 298px;
  right: 20%;
  top: 0;
}

.workspace-intro {
  text-align: center;
  max-width: 588px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 2;
}

.workspace-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.workspace-nav {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.workspace-nav-item {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  line-height: 38px;
  color: var(--primary-700);
  cursor: pointer;
  transition: color 0.2s ease;
}

.workspace-nav-item.active {
  color: var(--primary-400);
}

.workspace-panels {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.workspace-panel {
  position: relative;
  background: var(--white);
  border: 1px solid var(--primary-300);
  border-radius: 16px;
  padding: 32px;
  overflow: hidden;
  min-height: 500px;
}

.workspace-panel .blob {
  filter: blur(175px);
}
.workspace-panel .blob-a {
  width: 320px;
  height: 320px;
  right: 0;
  top: 0;
  background: var(--primary-100);
}
.workspace-panel .blob-b {
  width: 320px;
  height: 320px;
  left: 0;
  bottom: 0;
  background: var(--secondary-100);
}

.workspace-panel-head {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  margin-bottom: 32px;
}

.workspace-panel-head h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: var(--primary-900);
  flex: 1 1 200px;
  min-width: 220px;
}

.workspace-panel-head p {
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-900);
  flex: 2 1 340px;
}

.workspace-panel-tags {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.workspace-panel-visual {
  position: relative;
  z-index: 2;
  border-radius: 8px;
  background: var(--primary-50);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: -4px -4px 16px rgba(8, 78, 132, 0.08);
  overflow: hidden;
}

.workspace-panel-visual svg {
  width: 70%;
  opacity: 0.35;
}

/* ===== Start writing cards ===== */
.writing-cards {
  padding: 96px 0;
}

.writing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.writing-card {
  background: var(--primary-50);
  border: 1px solid var(--primary-200);
  box-shadow: 0 8px 16px rgba(8, 78, 132, 0.08);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: 266px;
}

.writing-card-icon {
  width: 32px;
  height: 32px;
  background: var(--primary-200);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.writing-card-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-600);
}

.writing-card h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  color: var(--primary-900);
  margin-bottom: 8px;
}

.writing-card p {
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-800);
}

.writing-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  color: var(--secondary-500);
  margin-top: auto;
}
.writing-card-link svg {
  width: 16px;
  height: 16px;
  fill: var(--secondary-500);
}

/* ===== Built for Books features ===== */
.features {
  padding: 96px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.feature-card {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  overflow: hidden;
  min-height: 290px;
  display: flex;
  align-items: center;
}

.feature-card.warm {
  border: 1px solid var(--secondary-100);
  box-shadow: 0 8px 16px rgba(239, 133, 17, 0.08);
}
.feature-card.cool {
  border: 1px solid var(--primary-100);
  box-shadow: 0 8px 16px rgba(8, 78, 132, 0.08);
}

.feature-card .blob {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  filter: blur(120px);
}
.feature-card.warm .blob { background: var(--secondary-100); }
.feature-card.cool .blob { background: var(--primary-100); }
.feature-card .blob.tl { top: 0; left: 0; }
.feature-card .blob.br { bottom: 0; right: 0; }

.feature-card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-icon {
  width: 32px;
  height: 32px;
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-card.warm .feature-icon svg { fill: var(--secondary-600); stroke: var(--secondary-600); }
.feature-card.cool .feature-icon svg { fill: var(--primary-600); stroke: var(--primary-600); }

.feature-card-label {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}
.feature-card.warm .feature-card-label { color: var(--secondary-600); }
.feature-card.cool .feature-card-label { color: var(--primary-800); }

.feature-card-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
}
.feature-card.warm .feature-card-title { color: var(--secondary-600); }
.feature-card.cool .feature-card-title { color: var(--primary-900); }

.feature-card-desc {
  font-size: 16px;
  line-height: 24px;
}
.feature-card.warm .feature-card-desc { color: var(--secondary-600); }
.feature-card.cool .feature-card-desc { color: var(--primary-800); }

/* ===== Manuscript to Finished Book steps ===== */
.journey {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.journey .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(200px);
  background: var(--secondary-100);
}
.journey .blob-1 { width: 380px; height: 380px; right: 5%; top: 20%; }
.journey .blob-2 { width: 376px; height: 537px; left: -80px; top: 0; filter: blur(225px); }

.journey-intro {
  text-align: center;
  max-width: 596px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}

.journey-steps-card {
  position: relative;
  z-index: 2;
  background: var(--primary-50);
  border: 1px solid var(--primary-200);
  box-shadow: 0 8px 16px rgba(8, 78, 132, 0.08);
  border-radius: 16px;
  padding: 40px;
}

.journey-steps {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  flex: 1 1 140px;
  min-width: 130px;
}

.journey-step-num {
  font-size: 14px;
  line-height: 20px;
  color: var(--primary-800);
}

.journey-step-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  color: var(--primary-900);
  display: flex;
  align-items: center;
  gap: 4px;
}
.journey-step-title svg {
  width: 16px;
  height: 16px;
  fill: var(--secondary-500);
}

.journey-step-desc {
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-800);
}

.journey-arrow {
  align-self: center;
  color: var(--primary-300);
  font-size: 20px;
}

/* ===== Relay race (image + text) ===== */
.relay {
  background: var(--primary-50);
  padding: 96px 0;
}

.relay-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 588px);
  gap: 80px;
  align-items: center;
}

.relay-image {
  width: 100%;
  aspect-ratio: 652 / 609;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary-200), var(--secondary-100));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.relay-image svg { width: 50%; opacity: 0.4; }

.relay-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ===== Book covers section ===== */
.covers {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.covers .blob {
  position: absolute;
  width: 432px;
  height: 432px;
  left: -100px;
  bottom: 0;
  border-radius: 50%;
  filter: blur(175px);
  background: var(--secondary-100);
}

.covers-inner {
  display: grid;
  grid-template-columns: minmax(0, 588px) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.covers-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.book-stack {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-cover {
  position: absolute;
  width: 260px;
  height: 368px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(8, 41, 73, 0.25);
  background: linear-gradient(160deg, var(--primary-700), var(--primary-950));
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: var(--white-50);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  transition: opacity 0.6s ease;
}

.book-cover.cover-main {
  left: 0;
  position: relative;
  z-index: 3;
  background: linear-gradient(160deg, var(--secondary-500), var(--secondary-600));
}

.book-cover.cover-stack {
  right: 40px;
  z-index: 1;
  opacity: 0;
}

.book-cover.cover-stack.active {
  opacity: 1;
  z-index: 2;
}

/* ===== Pricing ===== */
.pricing {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(180deg, var(--primary-100) 0%, var(--white) 100%);
  overflow: hidden;
}

.pricing .blob {
  position: absolute;
  width: 283px;
  height: 283px;
  left: 45%;
  top: 40%;
  border-radius: 50%;
  filter: blur(150px);
  background: var(--secondary-100);
}

.pricing-inner {
  display: grid;
  grid-template-columns: minmax(0, 532px) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.pricing-card {
  position: relative;
  background: linear-gradient(141deg, #082949 7.64%, #431505 90.95%);
  border-radius: 16px;
  padding: 40px;
  color: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pricing-card .blob {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  filter: blur(125px);
  background: var(--white);
}
.pricing-card .blob.tr { top: 0; right: 0; }
.pricing-card .blob.bl { bottom: 40px; left: 20%; }

.pricing-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  line-height: 46px;
}

.pricing-card .sub {
  color: var(--white-50);
  font-size: 16px;
}

.price-row {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.price-row .amount {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
}
.price-row .period {
  color: var(--white-50);
  font-size: 14px;
  padding-bottom: 9px;
}

.pricing-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.pricing-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white-50);
}
.pricing-feature svg {
  width: 16px;
  height: 16px;
  fill: var(--white-50);
  flex-shrink: 0;
}

.pricing-card-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.pricing-card-actions .btn {
  width: 100%;
}

.pricing-card-actions .note {
  color: var(--white-50);
  font-size: 14px;
  text-align: center;
}

.pricing-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--primary-100);
  box-shadow: 2px 8px 16px rgba(8, 41, 73, 0.16);
  border-radius: 16px;
  padding: 16px 24px;
  max-width: 441px;
}

.pricing-highlight-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-50);
  box-shadow: 0 4px 4px rgba(8, 41, 73, 0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pricing-highlight-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-600);
}

.pricing-highlight h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: var(--primary-900);
}
.pricing-highlight p {
  font-size: 16px;
  color: var(--primary-800);
}

/* ===== FAQ ===== */
.faq {
  position: relative;
  padding: 96px 0;
  background: var(--secondary-50);
  overflow: hidden;
}

.faq-inner {
  display: grid;
  grid-template-columns: minmax(0, 530px) minmax(0, 1fr);
  gap: 80px;
  position: relative;
  z-index: 2;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--white-300);
  padding: 24px 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: var(--primary-900);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}

.faq-question svg {
  width: 16px;
  height: 16px;
  fill: var(--secondary-500);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-top: 16px;
  font-size: 16px;
  line-height: 24px;
  color: var(--primary-800);
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

/* ===== Final CTA ===== */
.final-cta {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary-950), #431505);
  text-align: center;
  color: var(--white);
}

.final-cta-inner {
  max-width: 594px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.final-cta-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
}

.final-cta h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  line-height: 46px;
}

.final-cta p {
  font-size: 16px;
  color: var(--white);
}

.final-cta .cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== Footer ===== */
.footer {
  background: var(--white);
  padding: 80px 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--white-300);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 335px;
}

.footer-brand p {
  color: var(--primary-800);
  font-size: 16px;
}

.footer-links {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: var(--primary-900);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-900);
  transition: color 0.15s ease;
}
.footer-col a:hover {
  color: var(--secondary-500);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom span {
  font-size: 12px;
  color: var(--primary-800);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .hero-inner,
  .relay-inner,
  .covers-inner,
  .pricing-inner,
  .faq-inner {
    grid-template-columns: 1fr;
  }
  .relay-inner .relay-image,
  .covers-inner .book-stack {
    order: -1;
  }
  .workspace-grid {
    grid-template-columns: 1fr;
  }
  .workspace-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 32px;
  }
  .writing-cards-grid,
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .hero h1 {
    font-size: 38px;
    line-height: 46px;
  }
  .eyebrow-group h2,
  .pricing-card h3,
  .final-cta h2 {
    font-size: 28px;
    line-height: 36px;
  }
}

@media (max-width: 680px) {
  .container {
    padding: 0 16px;
  }
  .hero {
    padding: 60px 0 80px;
  }
  .writing-cards-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  .journey-steps {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .journey-step {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 16px;
  }
  .pricing-features {
    grid-template-columns: 1fr;
  }
  .footer-links {
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .book-stack {
    height: 340px;
  }
  .book-cover {
    width: 200px;
    height: 280px;
  }
}
