:root {
  --bg: #f6f3ec;
  --bg-alt: #fcfaf6;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #162033;
  --text-soft: #59657b;
  --border: rgba(27, 39, 68, 0.08);
  --blue: #2f80ed;
  --blue-dark: #1f5fb7;
  --blue-soft: #dceafb;
  --gold: #c79b51;
  --navy: #1a2540;
  --shadow-soft: 0 20px 50px rgba(20, 32, 61, 0.08);
  --shadow-medium: 0 24px 60px rgba(20, 32, 61, 0.14);
  --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, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(218, 231, 252, 0.65), transparent 36%),
    radial-gradient(circle at 85% 12%, rgba(249, 229, 196, 0.45), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(246, 243, 236, 0.72);
  border-bottom: 1px solid rgba(27, 39, 68, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(47, 128, 237, 0.14), rgba(199, 155, 81, 0.22));
  color: var(--blue-dark);
  font-size: 14px;
}

.brand-text {
  font-size: 1.06rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--text-soft);
  font-size: 0.96rem;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--navy);
}

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

.notice{
  margin:22px 0;
  padding:18px 20px;
  border-radius:20px;
  border:1px solid #f0e2c4;
  background:linear-gradient(180deg,#fffaf0,#fffdf8);
  color:#51412b;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  border: 1px solid transparent;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 14px 28px rgba(31, 95, 183, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 18px 32px rgba(31, 95, 183, 0.24);
}

.btn-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(27, 39, 68, 0.08);
}

.btn-large {
  min-height: 54px;
  padding: 0 26px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 44px;
}

.hero-bg {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  pointer-events: none;
}

.hero-bg-1 {
  width: 360px;
  height: 360px;
  background: rgba(47, 128, 237, 0.09);
  top: 40px;
  right: -80px;
}

.hero-bg-2 {
  width: 280px;
  height: 280px;
  background: rgba(199, 155, 81, 0.12);
  left: -40px;
  top: 140px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 470px);
  gap: 38px;
  align-items: center;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-dark);
}

.hero h1,
.section-heading h2,
.reflection-copy h2,
.cta-panel h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  max-width: 13ch;
}

.hero-lead {
  margin: 22px 0 0;
  max-width: 58ch;
  font-size: 1.12rem;
  color: var(--text);
}

.hero-subcopy {
  margin: 14px 0 0;
  max-width: 58ch;
  color: var(--text-soft);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-point {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(27, 39, 68, 0.06);
  color: var(--text-soft);
  font-size: 0.92rem;
  box-shadow: var(--shadow-soft);
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-shell {
  position: relative;
  width: min(100%, 420px);
  padding: 16px;
  border-radius: 42px;
  background: linear-gradient(180deg, #172139, #11192c);
  box-shadow: 0 32px 80px rgba(17, 25, 44, 0.3);
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  background: #09101d;
  border-radius: 0 0 18px 18px;
  z-index: 2;
}

.phone-screen {
  position: relative;
  min-height: 760px;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f9fc 0%, #eff4fa 100%);
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 18px 16px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(27, 39, 68, 0.06);
}

.topbar-icon {
  color: var(--blue);
  font-size: 1.9rem;
  line-height: 1;
}

.app-title {
  color: var(--blue);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

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

.circle-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(47, 128, 237, 0.12);
  font-size: 1rem;
}

.chat-area {
  position: relative;
  padding: 18px;
}

.bubble {
  border-radius: 26px;
  padding: 18px 18px;
  box-shadow: 0 10px 30px rgba(22, 32, 51, 0.05);
}

.bubble-user {
  margin-left: auto;
  margin-bottom: 16px;
  max-width: 76%;
  color: #fff;
  background: linear-gradient(135deg, #2f80ed, #2877df);
  font-size: 1rem;
  line-height: 1.5;
  border-bottom-right-radius: 10px;
}

.bubble-ai {
  position: relative;
  max-width: 92%;
  background: #dfeaf6;
  color: #172033;
  font-size: 0.96rem;
  border-bottom-left-radius: 10px;
  padding-bottom: 22px;
}

.bubble-ai p {
  margin: 0 0 16px;
}

.verse-card {
  margin: 10px 0 18px;
  padding: 16px;
  border-radius: 18px;
  background: #cfe0f2;
}

.verse-ref {
  color: var(--blue-dark);
  font-weight: 800;
  margin-bottom: 8px;
}

.verse-text {
  color: #214d8f;
  font-style: italic;
  line-height: 1.55;
}

.follow-up {
  color: var(--blue);
  font-style: italic;
  margin-bottom: 0 !important;
}

.assistant-avatar {
  position: absolute;
  bottom: 112px;
  left: 8px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #d8ae67, #8d6331);
  color: white;
  font-weight: 800;
  font-size: 0.82rem;
  box-shadow: 0 10px 24px rgba(73, 49, 19, 0.22);
}

.input-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 34px 1fr 44px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px 18px;
  background: rgba(255, 255, 255, 0.86);
  border-top: 1px solid rgba(27, 39, 68, 0.06);
}

.mic-icon {
  color: var(--blue);
  font-size: 1.1rem;
  text-align: center;
}

.input-pill {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #98a5ba;
  background: #e9f0f8;
  font-size: 0.95rem;
}

.send-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #98c5fb;
  color: #fff;
  font-weight: 800;
}

.visual-card {
  position: absolute;
  right: -10px;
  bottom: 44px;
  width: 220px;
  padding: 18px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(27, 39, 68, 0.06);
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(12px);
}

.visual-card-label {
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.visual-card-text {
  color: var(--text-soft);
  font-size: 0.93rem;
  line-height: 1.5;
}

.trust-strip {
  padding: 18px 0 30px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-item {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(27, 39, 68, 0.06);
  box-shadow: var(--shadow-soft);
}

.trust-title {
  display: block;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.trust-copy {
  display: block;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.62), rgba(240, 245, 252, 0.8));
  border-top: 1px solid rgba(27, 39, 68, 0.04);
  border-bottom: 1px solid rgba(27, 39, 68, 0.04);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.reflection-copy h2,
.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.section-heading p,
.reflection-copy p,
.cta-panel p,
.disclaimer-box p,
.site-footer p {
  color: var(--text-soft);
  margin: 16px 0 0;
  font-size: 1rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card,
.step-card,
.mini-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(27, 39, 68, 0.06);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.feature-card {
  padding: 26px;
}

.feature-card h3,
.step-card h3,
.mini-card-title {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.feature-card p,
.step-card p,
.mini-card-copy {
  margin: 0;
  color: var(--text-soft);
}

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

.step-card {
  padding: 26px;
}

.step-number {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--blue-dark);
}

.reflection-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.reflection-copy {
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(27, 39, 68, 0.06);
  box-shadow: var(--shadow-soft);
}

.reflection-side {
  display: grid;
  gap: 18px;
}

.mini-card {
  padding: 24px;
}

.cta-section {
  padding-top: 42px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 36px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.86), rgba(232, 241, 252, 0.86));
  border: 1px solid rgba(27, 39, 68, 0.06);
  box-shadow: var(--shadow-medium);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.disclaimer-section {
  padding-top: 34px;
}

.disclaimer-box {
  padding: 26px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(27, 39, 68, 0.06);
  box-shadow: var(--shadow-soft);
}

.site-footer {
  margin-top: 38px;
  padding: 32px 0 18px;
  background: rgba(20, 32, 61, 0.96);
  color: rgba(255, 255, 255, 0.82);
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.brand-footer .brand-mark {
  background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(199, 155, 81, 0.26));
  color: #fff;
}

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

.footer-brand p {
  max-width: 42ch;
  color: rgba(255,255,255,0.68);
}

.footer-links {
  display: grid;
  gap: 10px;
  text-align: right;
}

.footer-links a {
  color: rgba(255,255,255,0.82);
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.54);
}

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

  .hero-copy {
    max-width: none;
  }

  .hero-visual {
    margin-top: 16px;
  }

  .visual-card {
    right: 10px;
    bottom: 24px;
  }

  .trust-grid,
  .card-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-actions {
    justify-content: flex-start;
  }

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

  .footer-links {
    text-align: left;
    grid-template-columns: repeat(2, minmax(0, auto));
    gap: 12px 22px;
  }
}

@media (max-width: 820px) {
  .main-nav,
  .nav-actions .btn-secondary {
    display: none;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .hero {
    padding-top: 48px;
  }

  .phone-shell {
    width: min(100%, 390px);
  }

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

  .trust-grid,
  .card-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }
}

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

  .hero h1 {
    max-width: none;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-points {
    flex-direction: column;
    align-items: flex-start;
  }

  .phone-shell {
    padding: 12px;
    border-radius: 34px;
  }

  .phone-screen {
    min-height: 640px;
    border-radius: 24px;
  }

  .app-title {
    font-size: 1rem;
  }

  .bubble-user {
    max-width: 84%;
  }

  .bubble-ai {
    max-width: 100%;
  }

  .visual-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .reflection-copy,
  .cta-panel,
  .disclaimer-box {
    padding: 24px;
  }
}