:root {
  --bg: #f4f8fc;
  --bg-strong: #eaf2fb;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-solid: #ffffff;
  --surface-soft: #f8fbff;
  --line: rgba(26, 58, 87, 0.1);
  --line-strong: rgba(26, 58, 87, 0.16);
  --text: #132433;
  --text-muted: #5d7284;
  --text-soft: #7c8f9f;
  --brand: #4d90cf;
  --brand-deep: #225d95;
  --brand-ink: #15314a;
  --brand-soft: #cfe4f7;
  --gold: #d4b06a;
  --green: #7da78d;
  --navy: #102232;
  --navy-soft: #19364f;
  --shadow-sm: 0 14px 40px -28px rgba(23, 49, 76, 0.25);
  --shadow-md: 0 28px 70px -34px rgba(23, 49, 76, 0.33);
  --shadow-lg: 0 48px 120px -52px rgba(21, 49, 80, 0.55);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(169, 204, 238, 0.35), transparent 28%),
    radial-gradient(circle at top right, rgba(210, 228, 246, 0.5), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #f4f8fc 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-shell {
  overflow-x: clip;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: clamp(88px, 11vw, 140px) 0;
}

.section-tint {
  background: linear-gradient(180deg, rgba(232, 242, 252, 0.72), rgba(248, 251, 255, 0.78));
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}

.section-label--light {
  color: #b9d7f1;
}

.section-label--warm {
  color: #b68b4d;
}

.section-intro {
  max-width: 680px;
}

.section-intro--center {
  margin: 0 auto 60px;
  text-align: center;
}

.section-intro h2,
.quote-band h2,
.cta-copy h2,
.hero-copy h1 {
  margin: 0;
  font-family: 'Gowun Batang', serif;
  letter-spacing: -0.03em;
}

.section-intro h2,
.quote-band h2,
.cta-copy h2 {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.28;
  margin-bottom: 20px;
}

.section-intro p,
.quote-band p,
.cta-copy p {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.9;
  color: var(--text-muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 20px 0;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(248, 251, 255, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(18, 37, 56, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 34px;
  aspect-ratio: 1;
  object-fit: contain;
}

.brand-word {
  font-family: 'Gowun Batang', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-ink);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}

.site-nav a {
  font-size: 14px;
  font-weight: 600;
  color: #42596d;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--brand-deep);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: 0 18px 34px -18px rgba(34, 93, 149, 0.8);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(19, 36, 51, 0.08);
  background: rgba(255, 255, 255, 0.7);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: clamp(34px, 6vw, 56px) 0 clamp(90px, 12vw, 130px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(40px, 6vw, 78px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px -22px rgba(22, 56, 89, 0.32);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2b628f;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: 0 0 0 6px rgba(77, 144, 207, 0.14);
}

.hero-copy h1 {
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text);
  text-wrap: pretty;
}

.hero-lead {
  max-width: 560px;
  margin: 0 0 32px;
  font-size: clamp(17px, 1.65vw, 20px);
  line-height: 1.9;
  color: #4f6577;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: 0 24px 44px -22px rgba(34, 93, 149, 0.72);
}

.button-primary:hover {
  box-shadow: 0 28px 50px -20px rgba(34, 93, 149, 0.82);
}

.button-secondary {
  color: var(--brand-deep);
  border: 1px solid rgba(77, 144, 207, 0.22);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px -24px rgba(18, 38, 57, 0.22);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-proof li {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255,255,255,0.76), rgba(255,255,255,0.6));
  box-shadow: 0 20px 32px -26px rgba(20, 46, 72, 0.28);
  font-size: 13px;
  font-weight: 600;
  color: #3f5568;
}

.hero-visual {
  position: relative;
  min-height: 720px;
}

.phone-stage {
  position: relative;
  height: 100%;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(8px);
}

.hero-orb--one {
  top: -40px;
  right: -160px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(255, 250, 231, 0.96) 0%, rgba(253, 245, 214, 0.48) 30%, rgba(255, 255, 255, 0) 72%);
}

.hero-orb--two {
  bottom: 60px;
  right: 120px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(122, 171, 221, 0.35), rgba(122, 171, 221, 0) 70%);
}

.phone {
  position: absolute;
  inset: 78px 62px auto auto;
  width: min(100%, 360px);
  background: linear-gradient(180deg, #0b1825, #132434);
  border-radius: 44px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

.phone--main {
  right: 34px;
}

.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 108px;
  height: 28px;
  border-radius: 999px;
  background: #0c1724;
  z-index: 4;
}

.phone-screen {
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(180deg, #eef6fd 0%, #f9fbff 42%, #ffffff 100%);
  min-height: 650px;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px 0;
  font-size: 12px;
  font-weight: 700;
  color: #26394a;
}

.phone-content {
  padding: 28px 22px 24px;
}

.mini-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #7f9bb4;
  text-transform: uppercase;
}

.mini-label--light {
  color: rgba(255, 255, 255, 0.74);
}

.phone-header h2 {
  margin: 10px 0 12px;
  font-family: 'Gowun Batang', serif;
  font-size: 30px;
  line-height: 1.22;
  letter-spacing: -0.03em;
  color: var(--text);
}

.phone-header p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #5d7284;
}

.verse-card {
  margin-top: 22px;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(155deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
  box-shadow: 0 24px 36px -24px rgba(34, 93, 149, 0.95);
}

.verse-card span {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  opacity: 0.8;
  text-transform: uppercase;
}

.verse-card strong {
  font-family: 'Gowun Batang', serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
}

.task-stack {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.task-card {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 28px -20px rgba(24, 57, 88, 0.35);
}

.task-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  color: var(--text);
}

.task-card p {
  margin: 0;
  font-size: 12px;
  color: #8194a4;
}

.task-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  color: #225d95;
  background: rgba(77, 144, 207, 0.14);
}

.task-icon--gold {
  color: #a97f3b;
  background: rgba(212, 176, 106, 0.18);
}

.task-icon--green {
  color: #5f8d73;
  background: rgba(125, 167, 141, 0.18);
}

.task-check {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.halo-ring {
  position: absolute;
  top: 14px;
  right: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0) 70%);
  z-index: 1;
}

.halo-card {
  position: absolute;
  max-width: 220px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 46px -30px rgba(21, 50, 80, 0.45);
  z-index: 2;
}

.halo-card strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
}

.halo-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #667b8d;
}

.halo-card--verse {
  top: 70px;
  left: 0;
}

.halo-card--prayer {
  right: 0;
  bottom: 38px;
}

.proof-band {
  padding-bottom: 8px;
}

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

.proof-grid > div {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 38px -32px rgba(23, 49, 76, 0.35);
}

.proof-grid strong {
  display: block;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
}

.story-layout {
  display: grid;
  gap: 54px;
}

.story-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.info-card,
.feature,
.compare-card,
.cta-panel,
.proof-grid > div {
  backdrop-filter: blur(8px);
}

.info-card {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(248,251,255,0.82));
  border: 1px solid rgba(26, 58, 87, 0.08);
  box-shadow: var(--shadow-sm);
}

.card-number {
  display: inline-block;
  margin-bottom: 16px;
  font-family: 'Gowun Batang', serif;
  font-size: 30px;
  color: var(--brand);
}

.info-card h3,
.feature h3,
.compare-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.4;
}

.info-card p,
.feature p,
.compare-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.78;
  color: var(--text-muted);
}

.flow-shell {
  max-width: 1086px;
}

.flow-intro {
  max-width: 780px;
  margin-bottom: 54px;
}

.flow-intro h2 {
  font-size: clamp(40px, 4.9vw, 62px);
  line-height: 1.22;
  letter-spacing: -0.05em;
  color: var(--brand-ink);
}

.flow-intro p {
  max-width: 660px;
  margin: 0 auto;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.92;
  color: #577086;
}

.flow-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.compare-card {
  padding: 36px 34px 34px;
  border-radius: 28px;
  min-height: 228px;
}

.compare-card .section-label {
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: none;
}

.compare-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.compare-card li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 26px;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

.compare-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  transform: translateY(-50%);
}

.compare-card--soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,251,245,0.94));
  border: 1px solid rgba(212, 176, 106, 0.18);
  box-shadow: 0 28px 56px -42px rgba(22, 52, 82, 0.28);
}

.compare-card--soft .section-label {
  color: #bb914f;
}

.compare-card--soft li {
  color: #6a7d8f;
}

.compare-card--soft li::before {
  background: rgba(221, 189, 132, 0.88);
}

.compare-card--deep {
  background: linear-gradient(160deg, #4788c9 0%, #2e669d 100%);
  color: #fff;
  box-shadow: 0 34px 64px -36px rgba(39, 87, 135, 0.9);
}

.compare-card--deep .section-label {
  color: rgba(226, 238, 251, 0.94);
}

.compare-card--deep li {
  color: rgba(255,255,255,0.95);
}

.compare-card--deep li::before {
  content: '✓';
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.feature {
  padding: 30px;
  border-radius: 28px;
  min-height: 100%;
  border: 1px solid rgba(26, 58, 87, 0.08);
  box-shadow: var(--shadow-sm);
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(248,251,255,0.82));
}

.feature--large {
  grid-column: span 3;
  padding: 38px;
}

.feature--warm {
  grid-column: span 3;
  background: linear-gradient(180deg, rgba(255,248,236,0.96), rgba(255,252,246,0.9));
  border-color: rgba(212, 176, 106, 0.18);
}

.feature--soft {
  grid-column: span 3;
}

.feature--deep {
  grid-column: span 3;
  background: linear-gradient(160deg, #183852 0%, #102232 100%);
  color: #fff;
  box-shadow: 0 30px 60px -34px rgba(16, 34, 50, 0.95);
}

.feature--deep p {
  color: rgba(255,255,255,0.76);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(77, 144, 207, 0.12);
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 800;
}

.feature-icon--light {
  background: rgba(255,255,255,0.16);
  color: #fff;
}

.feature-tag {
  display: inline-block;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #86a4be;
  text-transform: uppercase;
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.experience-points {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.experience-points article {
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(255,255,255,0.92);
  box-shadow: 0 18px 36px -28px rgba(23, 49, 76, 0.24);
}

.experience-points strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.experience-points p {
  margin: 0;
  font-size: 15px;
  line-height: 1.78;
  color: var(--text-muted);
}

.floating-ui {
  position: relative;
  min-height: 560px;
}

.mini-phone {
  position: absolute;
  width: 240px;
  padding: 10px;
  border-radius: 38px;
  background: linear-gradient(180deg, #0d1927 0%, #122434 100%);
  box-shadow: var(--shadow-lg);
}

.mini-phone--left {
  top: 30px;
  left: 30px;
  transform: rotate(-4deg);
}

.mini-phone--right {
  top: 0;
  right: 20px;
  width: 260px;
  transform: rotate(4deg);
}

.mini-phone__screen {
  min-height: 470px;
  padding: 24px 20px;
  border-radius: 30px;
  background: linear-gradient(180deg, #eff6fd 0%, #ffffff 100%);
}

.mini-phone__screen--deep {
  background: linear-gradient(180deg, #4d90cf 0%, #1d4c74 100%);
  color: #fff;
}

.mini-phone__screen strong {
  display: block;
  margin: 8px 0 16px;
  font-family: 'Gowun Batang', serif;
  font-size: 24px;
  line-height: 1.3;
}

.mini-phone__screen ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.mini-phone__screen li,
.mini-phone__screen p {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: #42596d;
  font-size: 13px;
  line-height: 1.7;
  box-shadow: 0 12px 24px -20px rgba(23, 49, 76, 0.26);
}

.mini-phone__screen--deep p {
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
  box-shadow: none;
}

.mini-cta {
  margin-top: 16px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.94);
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.quote-band {
  position: relative;
  padding: clamp(100px, 13vw, 160px) 0;
  background: linear-gradient(165deg, #285d90 0%, #15344e 58%, #102232 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.quote-band::before,
.quote-band::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.quote-band::before {
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 320px;
  background: radial-gradient(circle, rgba(155, 200, 240, 0.42), rgba(155, 200, 240, 0) 70%);
}

.quote-band::after {
  right: -120px;
  bottom: -160px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255,255,255,0.14), rgba(255,255,255,0) 72%);
}

.quote-band__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.quote-band p {
  color: rgba(232, 242, 250, 0.82);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(34px, 5vw, 46px);
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.94);
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(246,250,255,0.88));
  box-shadow: var(--shadow-md);
}

.cta-logo {
  width: 52px;
  margin-bottom: 18px;
}

.cta-actions {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.cta-note {
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-soft);
}

.site-footer {
  padding: 80px 0 34px;
  background: #101f2c;
  color: #d5e1eb;
}

.footer-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 44px;
}

.footer-brand {
  max-width: 360px;
}

.brand--footer .brand-word {
  color: #fff;
}

.footer-brand p {
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: #8da4b8;
}

.footer-motto {
  display: inline-block;
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #647d91;
}

.footer-links {
  display: flex;
  gap: clamp(40px, 8vw, 100px);
  flex-wrap: wrap;
}

.footer-links > div {
  display: grid;
  gap: 11px;
}

.footer-label {
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #647d91;
}

.footer-links a {
  font-size: 14px;
  color: #b6c7d4;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12.5px;
  color: #70889d;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(.22,.61,.36,1), transform 0.8s cubic-bezier(.22,.61,.36,1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .experience-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-proof,
  .proof-grid,
  .story-cards,
  .compare-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature--large,
  .feature--warm,
  .feature--soft,
  .feature--deep {
    grid-column: span 1;
  }

  .hero-visual {
    min-height: 760px;
  }

  .phone--main {
    right: 50%;
    transform: translateX(50%);
  }

  .halo-card--verse {
    left: 10px;
  }

  .halo-card--prayer {
    right: 10px;
  }

  .floating-ui {
    min-height: 660px;
  }

  .cta-actions {
    justify-items: stretch;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 12px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 24px;
    background: rgba(248, 251, 255, 0.96);
    border: 1px solid rgba(19, 36, 51, 0.08);
    box-shadow: 0 24px 44px -28px rgba(19, 36, 51, 0.28);
    backdrop-filter: blur(18px);
  }

  .nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
    border-radius: 14px;
  }

  .site-nav a + a {
    margin-top: 4px;
  }

  .nav-cta {
    margin-top: 8px;
    justify-content: center;
  }

  .hero {
    padding-top: 14px;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 10.5vw, 54px);
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 26px;
  }

  .phone {
    width: min(100%, 330px);
  }

  .halo-card {
    max-width: 180px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .section {
    padding: 64px 0;
  }

  .section-intro h2,
  .quote-band h2,
  .cta-copy h2 {
    font-size: clamp(28px, 8vw, 36px);
    margin-bottom: 16px;
  }

  .section-intro p,
  .quote-band p,
  .cta-copy p,
  .hero-lead {
    font-size: 15px;
    line-height: 1.8;
  }

  .flow-intro {
    margin-bottom: 34px;
  }

  .flow-intro h2 {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.34;
  }

  .flow-intro p {
    font-size: 15px;
    line-height: 1.82;
  }

  .brand-word {
    font-size: 20px;
  }

  .hero {
    padding: 12px 0 72px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow-pill {
    justify-content: center;
    margin-bottom: 22px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cta-actions {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof li {
    padding: 15px 16px;
    font-size: 12.5px;
  }

  .hero-visual {
    min-height: 610px;
  }

  .phone {
    inset: 76px 50% auto auto;
    transform: translateX(50%);
    width: min(100%, 282px);
  }

  .phone-screen {
    min-height: 540px;
  }

  .phone-content {
    padding: 24px 18px 20px;
  }

  .phone-header h2 {
    font-size: 24px;
  }

  .phone-header p {
    font-size: 13px;
    line-height: 1.68;
  }

  .task-card {
    grid-template-columns: 36px minmax(0, 1fr) 24px;
    gap: 12px;
    padding: 13px;
  }

  .task-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .task-check {
    width: 24px;
    height: 24px;
  }

  .halo-card {
    display: none;
  }

  .proof-grid > div,
  .info-card,
  .compare-card,
  .feature,
  .experience-points article,
  .cta-panel {
    padding: 22px;
    border-radius: 22px;
  }

  .compare-card .section-label {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .compare-card li {
    min-height: 24px;
    padding-left: 28px;
    font-size: 15px;
    line-height: 1.68;
  }

  .floating-ui {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .mini-phone,
  .mini-phone--left,
  .mini-phone--right {
    position: static;
    width: 100%;
    transform: none;
  }

  .mini-phone__screen {
    min-height: auto;
  }

  .footer-layout {
    gap: 28px;
  }

  .footer-links {
    width: 100%;
    gap: 24px;
  }

  .footer-bottom {
    margin-top: 32px;
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  .header-inner {
    gap: 10px;
  }

  .brand-word {
    font-size: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(32px, 10vw, 40px);
  }

  .flow-intro h2 {
    font-size: clamp(26px, 9vw, 34px);
  }

  .flow-intro p br {
    display: none;
  }

  .hero {
    padding-bottom: 64px;
  }

  .hero-visual {
    min-height: 570px;
  }

  .phone {
    width: min(100%, 266px);
  }

  .phone-screen {
    min-height: 510px;
  }

  .proof-grid > div,
  .info-card,
  .compare-card,
  .feature,
  .experience-points article,
  .cta-panel {
    padding: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
}
