/* ═══ 10 Dawn Patrol — sunrise gradient, humanist serif, soft rounded cards ═══ */

:root {
  --cream: #FFF6EE;
  --paper: #FDEEE2;
  --text: #2B1A12;
  --muted: #6E5A4F;
  --hair: rgba(255,92,74,0.18);

  --sun:    #FFA654;
  --coral:  #FF7257;
  --rose:   #FF5C4A;
  --peach:  #FFD3B3;
  --amber:  #F4B043;
  --ocean:  #2D4858;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 520px at 85% -10%, rgba(255,166,84,0.35), transparent 70%),
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 400px);
  z-index: -1;
  pointer-events: none;
}
a { color: inherit; text-decoration: none; }

/* Running sun motif weaving through page */
.sun {
  position: fixed; top: -60px; right: -60px;
  width: 340px; height: 340px;
  background: radial-gradient(closest-side, #FFCE77 0%, #FFA654 38%, transparent 70%);
  border-radius: 50%; z-index: -1;
  pointer-events: none;
  opacity: .55;
}

/* Preview badge */
.preview-badge {
  position: fixed; bottom: 16px; left: 16px; z-index: 100;
  font-family: 'Nunito', sans-serif;
  font-size: 12px; font-weight: 600;
  background: rgba(255,255,255,0.9); color: var(--muted);
  backdrop-filter: blur(8px);
  padding: 8px 14px; border: 1px solid var(--hair);
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(255,92,74,0.08);
  transition: transform .15s, border-color .15s;
}
.preview-badge:hover { transform: translateY(-1px); border-color: var(--rose); }
.preview-badge strong { color: var(--rose); font-weight: 700; }

/* NAV */
.nav {
  max-width: 1160px; margin: 0 auto;
  padding: 28px 32px 0;
  display: flex; align-items: center; gap: 32px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 900; font-size: 26px;
  letter-spacing: .02em;
  color: var(--text);
}
.sunrise-dot {
  width: 18px; height: 18px;
  background: radial-gradient(circle, #FFCE77 0%, #FF7257 80%);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(255,114,87,.4);
}
.nav nav {
  display: flex; gap: 26px; margin-left: 20px; flex: 1;
  font-size: 15px; color: var(--muted); font-weight: 500;
}
.nav nav a:hover { color: var(--rose); }

/* BTN */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: .01em;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s, border-color .15s;
}
.btn-solid {
  background: linear-gradient(135deg, var(--rose), var(--sun));
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 26px rgba(255,92,74,0.32);
}
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(255,92,74,0.38); }
.btn-ghost {
  background: rgba(255,255,255,0.6);
  color: var(--text);
  border-color: var(--hair);
}
.btn-ghost:hover { border-color: var(--rose); color: var(--rose); }
.btn.block { display: inline-flex; width: 100%; justify-content: center; }

/* HERO */
.hero {
  max-width: 1160px; margin: 0 auto;
  padding: 60px 32px 90px;
  position: relative;
}
.hero-inner { max-width: 760px; position: relative; z-index: 2; }
.eyebrow {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-style: italic; font-weight: 500;
  font-size: 15px; color: var(--rose);
  margin-bottom: 22px;
  padding: 7px 16px;
  background: rgba(255,255,255,0.7);
  border-radius: 999px;
  border: 1px solid var(--hair);
}
.display {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(50px, 8.2vw, 104px);
  line-height: 1.02; letter-spacing: -0.02em;
  margin: 0 0 24px; color: var(--text);
}
.display em {
  font-style: italic; font-weight: 800;
  background: linear-gradient(120deg, var(--rose), var(--sun) 70%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lede {
  font-size: 18px; line-height: 1.7; color: var(--muted);
  max-width: 620px; margin: 0 0 32px; font-weight: 500;
}
.hero-cta { display: flex; gap: 14px; margin-bottom: 36px; flex-wrap: wrap; }
.capabilities {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.capabilities span {
  padding: 8px 16px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--hair);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: var(--muted);
}
.hero-hills {
  position: absolute; bottom: -1px; left: 0; right: 0;
  width: 100%; height: 180px;
  z-index: 1;
  pointer-events: none;
}

/* COUNTERS */
.counters {
  max-width: 840px; margin: 0 auto;
  padding: 32px 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 28px;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--hair);
  border-radius: 28px;
  box-shadow: 0 14px 46px rgba(255,92,74,0.08);
}
.c-item { text-align: center; flex: 1; }
.c-num {
  display: block;
  font-family: 'Fraunces', serif; font-weight: 900; font-style: italic;
  font-size: clamp(40px, 6vw, 58px); line-height: 1;
  background: linear-gradient(135deg, var(--rose), var(--sun));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-lbl {
  display: block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--muted); margin-top: 8px;
}
.c-sep { width: 1px; height: 36px; background: var(--hair); }

/* SECTIONS */
.wrap { max-width: 1160px; margin: 0 auto; padding: 92px 32px; }
.kicker {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 15px; color: var(--rose);
  margin-bottom: 12px; font-weight: 500;
  letter-spacing: .02em;
}
.kicker-center { text-align: center; }
.h2 {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1; letter-spacing: -0.02em;
  margin: 0 0 20px; color: var(--text);
}
.h2 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--rose), var(--sun) 70%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.h2-center { text-align: center; }
.lede-center { text-align: center; max-width: 680px; margin: 0 auto 52px; }

/* WHY */
.why-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.why-points {
  list-style: none; padding: 0; margin: 24px 0 30px;
  display: grid; gap: 14px;
}
.why-points li {
  display: grid; grid-template-columns: 44px 1fr;
  gap: 14px; padding: 16px 18px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--hair);
  border-radius: 18px;
  font-size: 14.5px; color: var(--muted); line-height: 1.65;
  transition: transform .15s, box-shadow .15s;
}
.why-points li:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(255,92,74,0.1); }
.wp-icon {
  width: 40px; height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--peach), var(--amber));
  color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px rgba(255,114,87,0.3);
}
.wp-icon svg { width: 18px; height: 18px; }
.why-points strong { color: var(--text); font-weight: 700; display: block; margin-bottom: 2px; }

.why-aside {
  display: grid; gap: 14px; position: relative;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--hair);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 16px 46px rgba(255,92,74,0.1);
}
.stack-card {
  display: flex; flex-direction: column;
  padding: 18px;
  border-radius: 18px;
}
.stack-card-left { background: rgba(109,90,79,0.06); }
.stack-card-right { background: linear-gradient(135deg, rgba(255,210,154,0.6), rgba(255,167,130,0.6)); }
.sc-hd {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 14px; color: var(--muted); margin-bottom: 10px;
  letter-spacing: .02em;
}
.stack-card-right .sc-hd { color: #7F3F24; }
.sc-items { display: flex; flex-direction: column; gap: 6px; }
.sc-row {
  padding: 10px 14px;
  background: rgba(255,255,255,0.8);
  border-radius: 12px;
  font-size: 13px; font-weight: 600;
  color: var(--text);
}
.sc-hero {
  display: flex; align-items: center; gap: 12px;
  padding: 16px;
  background: white;
  border-radius: 14px;
}
.sc-hero-sun {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFD28E 0%, #FF7257 80%);
  display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(255,114,87,0.4);
}
.sc-hero-sun-disc {
  width: 14px; height: 14px; border-radius: 50%;
  background: white;
}
.sc-hero-mark {
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: 22px; letter-spacing: .04em;
  color: var(--text); line-height: 1;
}
.sc-hero-sub { font-size: 12px; color: var(--muted); margin-top: 3px; font-weight: 600; }
.sc-sub {
  font-size: 12px; color: var(--muted); margin-top: 10px;
  text-align: center; font-style: italic;
  font-family: 'Fraunces', serif;
}
.stack-arrow { display: grid; place-items: center; }
.stack-arrow svg { width: 54px; height: auto; }

/* FEATURES */
.features { position: relative; }
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.feat {
  background: white;
  border: 1px solid var(--hair);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(255,92,74,0.06);
  transition: transform .2s, box-shadow .2s;
}
.feat:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(255,92,74,0.14); }
.feat-ico {
  width: 54px; height: 54px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 8px 18px rgba(255,114,87,0.24);
  margin-bottom: 16px;
}
.feat-ico svg { width: 24px; height: 24px; }
.feat-ico-peach { background: linear-gradient(135deg, var(--peach), var(--sun)); }
.feat-ico-coral { background: linear-gradient(135deg, var(--coral), var(--rose)); }
.feat-ico-amber { background: linear-gradient(135deg, var(--amber), #E68A2A); }
.feat h3 {
  font-family: 'Fraunces', serif; font-weight: 800;
  font-size: 24px; letter-spacing: -0.01em;
  margin: 0 0 10px; color: var(--text);
}
.feat p { font-size: 14.5px; color: var(--muted); line-height: 1.65; margin: 0; }

/* ABOUT */
.about { background: linear-gradient(180deg, transparent, rgba(255,210,154,0.3)); }
.about-inner { max-width: 760px; text-align: center; margin: 0 auto; padding: 80px 32px; }
.about-inner .kicker, .about-inner .h2 { text-align: center; }
.about-inner .kicker { display: block; margin: 0 0 12px; }
.about-inner .lede { margin: 0 auto; max-width: 640px; }

/* PRICING */
.price-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 840px; margin: 0 auto;
}
.price {
  background: white;
  border: 1px solid var(--hair);
  border-radius: 28px;
  padding: 36px 32px;
  display: flex; flex-direction: column;
  box-shadow: 0 12px 34px rgba(255,92,74,0.08);
  position: relative;
}
.price-premium {
  background: linear-gradient(165deg, rgba(255,210,154,0.45), rgba(255,114,87,0.12));
  border-color: rgba(255,114,87,0.4);
  box-shadow: 0 18px 48px rgba(255,92,74,0.2);
}
.price-tag {
  position: absolute; top: -14px; right: 28px;
  background: linear-gradient(135deg, var(--rose), var(--sun));
  color: white; padding: 6px 14px;
  font-size: 11px; font-weight: 800; letter-spacing: 1.4px;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(255,114,87,0.3);
}
.price-name {
  font-family: 'Fraunces', serif; font-weight: 800; font-style: italic;
  font-size: 22px; color: var(--text); margin-bottom: 6px;
}
.price-amt {
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: 60px; line-height: 1; color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.price-amt span {
  font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--muted); margin-left: 8px; letter-spacing: 0;
  display: inline-block;
}
.price ul {
  list-style: none; padding: 0; margin: 0 0 26px;
  flex: 1; display: grid; gap: 9px;
}
.price li {
  font-size: 14px; color: var(--muted); line-height: 1.5;
  padding-left: 26px; position: relative;
}
.price li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 14px; height: 14px;
  background: var(--rose);
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12l4 4 10-10' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12l4 4 10-10' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  mask-size: contain; -webkit-mask-size: contain;
}

/* CONTACT */
.contact { background: linear-gradient(180deg, transparent, rgba(255,230,200,0.45)); }
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; max-width: 960px; margin: 0 auto;
}
.contact-card {
  background: white;
  border: 1px solid var(--hair);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 10px 28px rgba(255,92,74,0.08);
}
.cc-h {
  font-family: 'Fraunces', serif; font-weight: 800; font-style: italic;
  font-size: 17px; color: var(--rose);
  margin-bottom: 10px;
}
.contact-card p { font-size: 14.5px; color: var(--muted); line-height: 1.65; margin: 0; }

/* END CTA */
.cta-end { position: relative; padding: 80px 0; }
.cta-inner {
  max-width: 820px; margin: 0 auto; padding: 64px 40px;
  text-align: center;
  background: white;
  border-radius: 36px;
  box-shadow: 0 26px 70px rgba(255,92,74,0.22);
  border: 1px solid var(--hair);
}
.cta-title { font-size: clamp(36px, 5vw, 60px); }
.cta-inner .lede { margin: 0 auto 28px; }

/* FOOTER */
.foot {
  text-align: center; padding: 40px 24px;
  color: var(--muted); font-size: 13px;
  font-family: 'Fraunces', serif; font-style: italic;
}

/* ═ Mobile ═ */
@media (max-width: 960px) {
  .nav { padding: 20px 20px 0; }
  .nav nav { display: none; }
  .hero { padding: 40px 20px 80px; }
  .display { font-size: clamp(44px, 13vw, 72px); }
  .wrap { padding: 72px 20px; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .counters { gap: 14px; padding: 22px 18px; max-width: 560px; margin: 0 20px; }
  .c-sep { display: none; }
  .price-grid { grid-template-columns: 1fr; max-width: 480px; gap: 18px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .nav { padding: 18px 16px 0; gap: 14px; }
  .logo { font-size: 22px; }
  .sunrise-dot { width: 14px; height: 14px; }
  .hero { padding: 30px 16px 72px; }
  .wrap { padding: 56px 16px; }
  .feat-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .counters { flex-direction: column; gap: 10px; padding: 18px; border-radius: 20px; }
  .c-item { padding: 8px 0; }
  .cta-inner { padding: 48px 22px; border-radius: 26px; }
  .preview-badge { font-size: 11px; padding: 6px 11px; }
  .sun { width: 240px; height: 240px; top: -30px; right: -30px; opacity: .4; }
}
