:root {
  --ink: #0f1c2e;
  --ink-soft: #20324c;
  --sand: #f7f0e6;
  --paper: #fdfaf5;
  --accent: #f15a2a;
  --accent-2: #f3c77d;
  --teal: #3ac7b8;
  --card: rgba(255, 255, 255, 0.06);
  --muted: rgba(255, 255, 255, 0.72);
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  font-family: "Manrope", "Plus Jakarta Sans", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #e9eef7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 20% 20%, rgba(243, 199, 125, 0.12), transparent 38%),
    radial-gradient(circle at 85% 10%, rgba(58, 199, 184, 0.16), transparent 32%),
    radial-gradient(circle at 50% 80%, rgba(241, 90, 42, 0.12), transparent 40%),
    linear-gradient(135deg, #0b1322 0%, #101d31 40%, #112342 100%);
  color: #e9eef7;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page-shell {
  max-width: 1220px;
  margin: 0 auto;
  padding: 32px 28px 64px;
  position: relative;
}

.top-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  padding: 6px;
  overflow: hidden;
}

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

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-weight: 700;
}

.brand-sub {
  font-size: 12px;
  color: rgba(233, 238, 247, 0.72);
}

.nav-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: #e9eef7;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav-actions {
  display: flex;
  gap: 10px;
}

button {
  font: inherit;
  border: none;
  border-radius: 14px;
  padding: 12px 16px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

button.solid {
  background: linear-gradient(135deg, var(--accent), #f38a3a);
  color: #0f1c2e;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(241, 90, 42, 0.35);
}

button.solid:hover {
  transform: translateY(-2px);
}

button.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #e9eef7;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

button.ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

button.text-link {
  background: transparent;
  color: #f3c77d;
  padding: 8px;
}

main {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
}

.hero::before {
  width: 320px;
  height: 320px;
  background: rgba(241, 90, 42, 0.18);
  top: -40px;
  right: -80px;
}

.hero::after {
  width: 280px;
  height: 280px;
  background: rgba(58, 199, 184, 0.12);
  bottom: -60px;
  left: -60px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 14px;
  color: #f3c77d;
  letter-spacing: 0.4px;
}

h1,
h2,
h3 {
  margin: 10px 0;
  color: #fdfaf5;
  letter-spacing: -0.2px;
}

h1 {
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.2;
}

.lede {
  color: var(--muted);
  max-width: 620px;
  margin: 18px 0;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin: 20px 0 10px;
  flex-wrap: wrap;
}

.hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: #fdfaf5;
}

.hero-pills span {
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
}

.hero-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  border-radius: 24px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.card-header,
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-title {
  font-weight: 800;
  color: #fdfaf5;
}

.card-sub {
  color: rgba(233, 238, 247, 0.8);
  font-size: 14px;
}

.stamp {
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(243, 199, 125, 0.2);
  color: #fdfaf5;
  border: 1px solid rgba(243, 199, 125, 0.6);
  font-weight: 700;
}

.card-body {
  margin: 16px 0 12px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}

.letter {
  background: var(--paper);
  color: var(--ink);
  border-radius: 16px;
  padding: 16px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  line-height: 1.55;
  font-size: 15px;
}

.letter-line {
  margin-bottom: 10px;
}

.letter-sign {
  text-align: right;
  font-weight: 700;
  color: #cf4f21;
}

.photo-stack {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(58, 199, 184, 0.3), rgba(243, 199, 125, 0.35));
  display: grid;
  place-items: center;
  color: #0f1c2e;
  font-weight: 800;
  letter-spacing: 0.6px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.photo:nth-child(2) {
  transform: translate(18px, 26px) rotate(6deg);
  background: linear-gradient(135deg, rgba(241, 90, 42, 0.32), rgba(243, 199, 125, 0.45));
}

.photo:nth-child(3) {
  transform: translate(-20px, -18px) rotate(-8deg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(58, 199, 184, 0.36));
}

.card-footer {
  gap: 12px;
  flex-wrap: wrap;
}

.delivery {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(233, 238, 247, 0.85);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(241, 90, 42, 0.14);
}

.section-grid {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 20px;
}

.section-heading p {
  color: var(--muted);
}

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

.flow-item {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.flow-number {
  font-weight: 800;
  color: #f3c77d;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.feature-blocks {
  background: linear-gradient(135deg, rgba(58, 199, 184, 0.08), rgba(241, 90, 42, 0.06));
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.feature {
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  min-height: 170px;
}

.feature-badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(243, 199, 125, 0.24);
  color: #fdfaf5;
  font-weight: 700;
  font-size: 13px;
}

.testimonial {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
}

.quote-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.quote-mark {
  position: absolute;
  top: 8px;
  left: 16px;
  font-size: 60px;
  color: rgba(243, 199, 125, 0.38);
}

.quote-card p {
  margin-top: 28px;
  color: #fdfaf5;
}

.quote-meta {
  margin-top: 18px;
  color: var(--muted);
}

.cta {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border-radius: 24px;
  background: radial-gradient(circle at 0% 0%, rgba(243, 199, 125, 0.24), transparent 38%),
    radial-gradient(circle at 100% 20%, rgba(58, 199, 184, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.cta-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 18px;
}

.cta-badge .badge-title {
  font-weight: 800;
  color: #fdfaf5;
  margin-bottom: 10px;
}

.cta-badge ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.footer {
  margin-top: 48px;
  padding: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-extra {
  grid-column: span 2;
  color: rgba(233, 238, 247, 0.6);
}

@media (max-width: 960px) {
  .top-nav {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .nav-actions {
    justify-self: start;
  }

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

  .card-body {
    grid-template-columns: 1fr;
  }

  .flow {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .page-shell {
    padding: 24px 20px 48px;
  }
}

@media (max-width: 820px) {
  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }

  .nav-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero-ctas,
  .cta-actions {
    width: 100%;
  }

  .hero-card {
    margin-top: 6px;
  }

  .section-heading h2 {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .hero,
  .section-grid,
  .cta {
    padding: 20px;
  }

  .top-nav {
    padding: 12px 14px;
  }

  .nav-links {
    gap: 10px;
  }

  h1 {
    font-size: 28px;
  }

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

  .photo {
    width: 100px;
    height: 100px;
  }

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

  .footer-extra {
    grid-column: span 1;
  }
}

@media (max-width: 440px) {
  .page-shell {
    padding: 18px 14px 40px;
  }

  h1 {
    font-size: 24px;
  }

  .top-nav,
  .nav-links,
  .section-grid,
  .cta {
    border-radius: 16px;
  }

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

  .hero-pills span {
    width: 100%;
  }
}

@media (min-width: 1320px) {
  .page-shell {
    max-width: 1340px;
  }

  .hero,
  .cta {
    padding: 36px;
  }

  h1 {
    font-size: 46px;
  }
}

