:root {
  color-scheme: light;
  --bg: #f5f5ef;
  --paper: #fbfbf7;
  --ink: #172019;
  --ink-soft: #4f5b53;
  --muted: #7d877f;
  --line: rgba(23, 32, 25, .14);
  --line-strong: rgba(23, 32, 25, .24);
  --green: #286447;
  --green-dark: #173a2c;
  --green-deep: #10281f;
  --sage: #dce8de;
  --sage-soft: #edf3ed;
  --peach: #eee0d6;
  --cream: #f2efe5;
  --white: #fff;
  --glow: rgba(40, 100, 71, .13);
  --text: var(--ink);
  --text-soft: var(--ink-soft);
  --text-muted: var(--muted);
  --green-bright: var(--green);
  --font-display: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --shell: min(1180px, calc(100% - 64px));
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 28px 80px rgba(24, 40, 31, .11);
  --ease: cubic-bezier(.2, .75, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { color: var(--white); background: var(--green); }
:focus-visible { outline: 2px solid var(--green); outline-offset: 4px; }

.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  transform: translateY(-150%);
  color: var(--white);
  background: var(--green);
  border-radius: 7px;
  font-weight: 600;
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 900;
  inset: 0 0 auto;
  height: 78px;
  border-bottom: 1px solid transparent;
  transition: height .25s var(--ease), background .25s, border-color .25s;
}
.site-header.scrolled {
  height: 68px;
  border-color: var(--line);
  background: rgba(245, 245, 239, .92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 38px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 700 16px/1 var(--font-display);
  letter-spacing: -.035em;
  white-space: nowrap;
}
.brand small { margin-left: 2px; color: var(--green); font-size: 10px; letter-spacing: .02em; }
.brand-symbol {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--white);
  background: var(--green);
  font: 700 13px/1 var(--font-display);
}
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 32px; }
.desktop-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 100% 1px 0;
  height: 1px;
  background: var(--green);
  transition: right .25s var(--ease);
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--ink); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  display: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
}
.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: transform .25s, top .25s;
}
.menu-toggle span:first-child { top: 18px; }
.menu-toggle span:last-child { top: 24px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }
.mobile-menu { display: none; }

.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--green);
  border-radius: 9px;
  color: var(--white);
  background: var(--green);
  box-shadow: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s, border-color .2s;
}
.button:hover { transform: translateY(-2px); background: var(--green-dark); border-color: var(--green-dark); }
.button-compact { min-height: 40px; padding-inline: 16px; }
.button-light { color: var(--green-deep); border-color: var(--white); background: var(--white); }
.button-light:hover { color: var(--white); border-color: var(--green); background: var(--green); }
.button-solid { color: var(--white); border-color: var(--green); background: var(--green); }
.button i { font-style: normal; }
.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  font-size: 13px;
  font-weight: 600;
}
.text-link span { color: var(--green); }

.overline, .section-label {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.overline span { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.section-label span { color: var(--green); }
.section-label::after { content: ""; width: 38px; height: 1px; background: var(--line-strong); }
.section-label.light { color: rgba(255,255,255,.57); }
.section-label.light span { color: #a8d5b6; }
.section-label.light::after { background: rgba(255,255,255,.24); }
.section-title {
  margin: 0;
  font: 600 clamp(40px, 5.1vw, 66px)/1.06 var(--font-display);
  letter-spacing: -.055em;
}
.section { padding: clamp(96px, 10vw, 144px) 0; }

.hero {
  min-height: 760px;
  padding-top: 78px;
  position: relative;
  background:
    linear-gradient(90deg, transparent 49.94%, rgba(23,32,25,.045) 50%, transparent 50.06%),
    radial-gradient(circle at 78% 38%, rgba(40,100,71,.085), transparent 32%);
}
.hero-grid {
  min-height: 620px;
  padding: 82px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(430px, .72fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 {
  max-width: 760px;
  margin: 24px 0 25px;
  font: 600 clamp(58px, 6.8vw, 88px)/.98 var(--font-display);
  letter-spacing: -.07em;
}
.hero-lead { max-width: 570px; margin: 0; color: var(--ink-soft); font-size: clamp(17px, 1.7vw, 20px); line-height: 1.7; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

.hero-product { min-height: 560px; position: relative; display: grid; place-items: center; }
.hero-product::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--sage-soft);
}
.preview-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 395px);
  overflow: hidden;
  border: 1px solid rgba(16,40,31,.14);
  border-radius: 22px;
  background: #153c2d;
  box-shadow: var(--shadow);
}
.preview-topbar {
  min-height: 54px;
  padding: 0 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.86);
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 11px;
  font-weight: 600;
}
.preview-topbar span { display: flex; align-items: center; gap: 8px; }
.preview-topbar i { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 7px; color: var(--green-deep); background: #b9dec4; font: 700 13px Georgia, serif; }
.preview-topbar small { color: rgba(255,255,255,.48); font-size: 8px; letter-spacing: .11em; text-transform: uppercase; }
.preview-content { padding: 24px 22px 22px; }
.preview-greeting small, .app-welcome small { color: #b9dec4; font-size: 7px; font-weight: 600; letter-spacing: .15em; }
.preview-greeting h2 { max-width: 280px; margin: 8px 0 20px; color: var(--white); font: 600 25px/1.15 var(--font-display); letter-spacing: -.045em; }
.preview-progress, .app-focus {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 14px;
  color: var(--green-deep);
  background: #a8cfb3;
}
.progress-value, .focus-ring {
  width: 48px;
  height: 48px;
  flex: none;
  display: grid;
  place-items: center;
  border: 4px solid rgba(255,255,255,.48);
  border-top-color: var(--white);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
}
.preview-progress span:last-child, .app-focus span:last-child { min-width: 0; }
.preview-progress small, .preview-progress strong, .app-focus small, .app-focus strong, .app-focus em { display: block; }
.preview-progress small, .app-focus small { font-size: 7px; letter-spacing: .08em; }
.preview-progress strong, .app-focus strong { margin-top: 3px; font: 600 12px var(--font-display); }
.preview-prayer, .app-prayer {
  margin-top: 11px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  color: var(--white);
  background: rgba(255,255,255,.045);
}
.preview-prayer small, .preview-prayer strong, .app-prayer small, .app-prayer strong { display: block; }
.preview-prayer small, .app-prayer small { color: rgba(255,255,255,.46); font-size: 6px; letter-spacing: .12em; }
.preview-prayer strong, .app-prayer strong { margin-top: 2px; font-size: 10px; }
.preview-prayer b, .app-prayer b { font-size: 10px; }
.preview-routine { margin-top: 20px; }
.routine-heading, .app-section-title { margin-bottom: 8px; display: flex; align-items: center; justify-content: space-between; color: var(--white); }
.routine-heading strong { font: 600 13px var(--font-display); }
.routine-heading small { color: rgba(255,255,255,.42); font-size: 7px; }
.routine-item, .app-task {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.routine-item > i, .app-task > i {
  width: 24px;
  height: 24px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 7px;
  font-size: 9px;
  font-style: normal;
}
.routine-item.complete > i, .app-task.done > i { color: var(--green-deep); border-color: #b9dec4; background: #b9dec4; }
.routine-item strong, .routine-item small, .app-task strong, .app-task small { display: block; }
.routine-item strong, .app-task strong { font-size: 9px; }
.routine-item small, .app-task small { margin-top: 1px; color: rgba(255,255,255,.4); font-size: 7px; }
.preview-note {
  position: absolute;
  z-index: 3;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(251,251,247,.94);
  box-shadow: 0 16px 40px rgba(24,40,31,.12);
}
.preview-note small, .preview-note strong { display: block; }
.preview-note small { color: var(--muted); font-size: 7px; letter-spacing: .12em; }
.preview-note strong { margin-top: 2px; font: 600 11px var(--font-display); }
.note-prayer { top: 78px; right: -22px; }
.note-offline { left: -28px; bottom: 62px; }
.hero-footer {
  min-height: 82px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-top: 1px solid var(--line);
}
.hero-footer span { min-height: 44px; padding: 0 24px; display: flex; flex-direction: column; justify-content: center; color: var(--muted); border-right: 1px solid var(--line); font-size: 10px; }
.hero-footer span:first-child { padding-left: 0; }
.hero-footer span:last-child { border: 0; }
.hero-footer strong { color: var(--ink); font: 600 18px var(--font-display); }

.studio-section { background: var(--paper); }
.studio-intro {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, .62fr);
  align-items: end;
  gap: clamp(70px, 10vw, 150px);
}
.studio-copy p { margin: 0 0 18px; color: var(--ink-soft); font-size: 16px; line-height: 1.8; }
.studio-copy p:last-child { margin-bottom: 0; }
.studio-values { margin-top: 86px; display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.value { min-height: 235px; padding: 32px 36px 30px 0; }
.value + .value { padding-left: 36px; border-left: 1px solid var(--line); }
.value > span, .product-features article > span { color: var(--green); font-size: 10px; font-weight: 600; }
.value h3 { margin: 45px 0 10px; font: 600 23px var(--font-display); letter-spacing: -.035em; }
.value p { max-width: 300px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.product-section { color: var(--white); background: var(--green-deep); }
.product-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .55fr); align-items: end; gap: clamp(60px, 10vw, 150px); }
.product-name { margin: 24px 0 19px; display: flex; align-items: center; gap: 10px; color: #b9dec4; font: 600 14px var(--font-display); }
.product-name i { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 9px; color: var(--green-deep); background: #b9dec4; font: 700 16px Georgia, serif; }
.product-name small { padding: 3px 7px; border: 1px solid rgba(255,255,255,.17); border-radius: 5px; color: rgba(255,255,255,.5); font-size: 7px; letter-spacing: .13em; }
.product-intro p { margin: 0 0 25px; color: rgba(255,255,255,.66); line-height: 1.8; }
.product-showcase {
  margin-top: 78px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.04);
}
.today-panel, .prayer-panel, .guidance-panel { border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: #153c2d; }
.today-panel { min-height: 580px; padding: 24px; }
.app-bar { display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.9); font-size: 11px; font-weight: 600; }
.app-bar small { color: rgba(255,255,255,.38); font-size: 7px; letter-spacing: .12em; }
.app-welcome { margin-top: 62px; }
.app-welcome h3 { max-width: 420px; margin: 10px 0 24px; font: 600 clamp(28px, 3vw, 40px)/1.08 var(--font-display); letter-spacing: -.05em; }
.app-focus { padding: 20px; }
.app-focus em { margin-top: 2px; font-size: 8px; font-style: normal; opacity: .7; }
.app-section-title { margin: 25px 0 6px; }
.app-section-title h4 { margin: 0; font: 600 16px var(--font-display); }
.app-section-title small { color: rgba(255,255,255,.4); font-size: 8px; }
.app-task { min-height: 58px; }
.app-task strong { font-size: 10px; }
.app-task small { font-size: 8px; }
.showcase-side { display: grid; grid-template-rows: 1fr auto; gap: 18px; }
.prayer-panel { min-height: 385px; padding: 24px; background: #254a3b; }
.next-prayer { margin: 28px 0; padding: 24px; text-align: center; border-radius: 14px; background: rgba(255,255,255,.08); }
.next-prayer small, .next-prayer strong, .next-prayer span { display: block; }
.next-prayer small { color: #e6a994; font-size: 7px; letter-spacing: .13em; }
.next-prayer strong { margin: 5px 0; font: 600 40px var(--font-display); }
.next-prayer span { color: rgba(255,255,255,.52); font-size: 9px; }
.prayer-times span { min-height: 42px; display: grid; grid-template-columns: 1fr auto 50px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.7); font-size: 9px; }
.prayer-times b { color: var(--white); font-weight: 500; }
.prayer-times small { text-align: right; color: rgba(255,255,255,.34); font-size: 7px; }
.prayer-times .active { color: #b9dec4; }
.guidance-panel { min-height: 175px; padding: 24px; display: grid; grid-template-columns: 62px 1fr; gap: 21px; align-items: start; background: var(--peach); color: var(--green-deep); }
.guidance-mark { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 16px; color: var(--green-deep); background: #bfdcc7; font: 700 28px Georgia, serif; }
.guidance-panel small { color: var(--green); font-size: 7px; font-weight: 600; letter-spacing: .14em; }
.guidance-panel h3 { margin: 7px 0 8px; font: 600 20px/1.2 var(--font-display); letter-spacing: -.035em; }
.guidance-panel p { margin: 0; color: #5b665f; font-size: 12px; line-height: 1.6; }
.product-features { margin-top: 68px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.13); }
.product-features article { padding: 30px 38px 0 0; }
.product-features article + article { padding-left: 38px; border-left: 1px solid rgba(255,255,255,.13); }
.product-features article > span { color: #a8d5b6; }
.product-features h3 { margin: 28px 0 9px; font: 600 19px var(--font-display); letter-spacing: -.025em; }
.product-features p { max-width: 310px; margin: 0; color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.65; }

.method-section { background: var(--cream); }
.method-heading { margin-top: 28px; display: grid; grid-template-columns: 1fr .48fr; align-items: end; gap: 100px; }
.method-heading > p { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.method-list { margin-top: 75px; border-top: 1px solid var(--line-strong); }
.method-item {
  min-height: 122px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 80px minmax(260px, .8fr) 1fr;
  align-items: center;
  gap: 35px;
  border-bottom: 1px solid var(--line);
}
.method-item > span { color: var(--green); font-size: 10px; font-weight: 600; }
.method-item h3 { margin: 0; font: 600 clamp(20px, 2vw, 27px) var(--font-display); letter-spacing: -.04em; }
.method-item p { max-width: 460px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.contact-section { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: .78fr 1.02fr; gap: clamp(70px, 9vw, 130px); align-items: start; }
.contact-copy .section-title { margin-top: 28px; font-size: clamp(40px, 4.5vw, 59px); }
.contact-copy > p { max-width: 500px; margin: 25px 0 0; color: var(--ink-soft); font-size: 16px; line-height: 1.8; }
.contact-links { margin-top: 45px; border-top: 1px solid var(--line); }
.contact-links a {
  min-height: 70px;
  display: grid;
  grid-template-columns: 92px 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.contact-links small { color: var(--muted); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.contact-links strong { min-width: 0; overflow-wrap: anywhere; font-size: 13px; font-weight: 500; }
.contact-links a > span { color: var(--green); }
.contact-form { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { position: relative; margin-bottom: 18px; display: block; }
.field > span { margin-bottom: 7px; display: block; color: var(--ink-soft); font-size: 11px; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  outline: 0;
  transition: border-color .2s, box-shadow .2s;
}
.field input, .field select { height: 50px; padding: 0 14px; }
.field textarea { min-height: 145px; padding: 13px 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px var(--glow); }
.field input::placeholder, .field textarea::placeholder { color: #9aa29c; }
.character-count { position: absolute; right: 11px; bottom: 8px; color: var(--muted); font-size: 9px; }
.honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.cf-turnstile { min-height: 65px; margin-bottom: 16px; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.form-footer p { max-width: 260px; margin: 0; color: var(--muted); font-size: 10px; line-height: 1.5; }
.form-footer p a { text-decoration: underline; }
.form-footer .button { flex: none; }
.form-status { display: none; margin: 18px 0 0; padding: 12px 14px; border-radius: 8px; font-size: 12px; }
.form-status.visible { display: block; }
.form-status.success { color: #1c5c38; background: #e1f2e7; }
.form-status.error { color: #8a342b; background: #f8e6e2; }

.closing-section { padding: 112px 0; color: var(--white); background: var(--green); }
.closing-inner { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .55fr); align-items: end; gap: 80px; }
.closing-inner .overline { grid-column: 1 / -1; color: rgba(255,255,255,.57); }
.closing-inner .overline span { background: #b9dec4; }
.closing-inner h2 { margin: 14px 0 0; font: 600 clamp(44px, 5vw, 68px)/1.03 var(--font-display); letter-spacing: -.06em; }
.closing-inner > p:not(.overline) { margin: 0; color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.75; }
.closing-inner .button { grid-column: 2; width: max-content; margin-top: -8px; }

.site-footer { padding: 72px 0 25px; background: var(--paper); }
.footer-main { padding-bottom: 62px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; }
.footer-main > div:first-child > p { max-width: 270px; margin: 18px 0 0; color: var(--muted); font-size: 13px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.footer-links div { display: flex; flex-direction: column; gap: 9px; }
.footer-links strong { margin-bottom: 7px; color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a { width: max-content; color: var(--ink-soft); font-size: 12px; }
.footer-links a:hover { color: var(--green); }
.footer-bottom { padding-top: 20px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }

/* Compatibility for legal and utility pages */
.brand-mark {
  width: 30px;
  height: 30px;
  display: inline-block;
  border-radius: 9px;
  background: var(--green);
}

@media (max-width: 1060px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu {
    position: fixed;
    inset: 68px 0 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: var(--bg);
    transition: opacity .2s, visibility .2s;
  }
  .mobile-menu.open { visibility: visible; opacity: 1; pointer-events: auto; }
  .mobile-menu nav { height: 100%; padding: 28px 0 36px; display: flex; flex-direction: column; }
  .mobile-menu nav > a:not(.button) {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    font: 600 25px var(--font-display);
    letter-spacing: -.04em;
  }
  .mobile-menu nav > a:not(.button) span { color: var(--green); font: 600 9px var(--font-body); letter-spacing: .1em; }
  .mobile-menu .button { margin-top: auto; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(380px, .75fr); gap: 45px; }
  .note-prayer { right: 0; }
  .note-offline { left: 0; }
  .product-heading, .studio-intro { gap: 65px; }
  .product-showcase { grid-template-columns: 1fr .82fr; }
  .contact-grid { gap: 60px; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 40px, 720px); }
  .hero-grid { padding-top: 64px; grid-template-columns: 1fr; text-align: center; }
  .hero-copy .overline { justify-content: center; }
  .hero h1 { max-width: 700px; margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-product { min-height: 525px; }
  .hero-footer { margin-top: 20px; }
  .studio-intro, .product-heading, .method-heading, .contact-grid, .closing-inner { grid-template-columns: 1fr; gap: 35px; }
  .studio-copy { max-width: 620px; }
  .studio-values { grid-template-columns: 1fr; }
  .value { min-height: 0; padding: 28px 0; }
  .value + .value { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .value h3 { margin-top: 18px; }
  .product-showcase { grid-template-columns: 1fr; }
  .showcase-side { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .product-features { grid-template-columns: 1fr; }
  .product-features article { padding: 26px 0; }
  .product-features article + article { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.13); }
  .product-features h3 { margin-top: 13px; }
  .method-item { grid-template-columns: 55px 1fr; gap: 22px; }
  .method-item p { grid-column: 2; }
  .closing-inner .overline { grid-column: auto; }
  .closing-inner .button { grid-column: auto; margin-top: 0; }
  .footer-main { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 32px); --radius: 14px; }
  html { scroll-padding-top: 70px; }
  body { font-size: 15px; }
  .site-header, .site-header.scrolled { height: 64px; }
  .header-inner { gap: 12px; }
  .brand { font-size: 14px; }
  .brand-symbol { width: 28px; height: 28px; border-radius: 8px; }
  .header-cta { display: none; }
  .menu-toggle { width: 42px; height: 42px; }
  .mobile-menu { inset-block-start: 64px; }
  .section { padding: 80px 0; }
  .section-title { font-size: clamp(36px, 11vw, 47px); }
  .hero { min-height: 0; padding-top: 64px; background: radial-gradient(circle at 50% 28%, rgba(40,100,71,.08), transparent 30%); }
  .hero-grid { min-height: 0; padding: 60px 0 25px; gap: 36px; }
  .hero h1 { margin: 19px auto 18px; font-size: clamp(43px, 13.5vw, 57px); line-height: 1; letter-spacing: -.065em; }
  .hero-lead { font-size: 15px; line-height: 1.7; }
  .hero-actions { margin-top: 25px; display: grid; gap: 12px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { margin-inline: auto; }
  .hero-product { min-height: 450px; }
  .hero-product::before { width: 320px; height: 320px; }
  .preview-frame { width: min(100%, 340px); border-radius: 18px; }
  .preview-topbar { min-height: 46px; }
  .preview-content { padding: 19px 17px 16px; }
  .preview-greeting h2 { margin-bottom: 15px; font-size: 21px; }
  .preview-routine { margin-top: 15px; }
  .routine-item { min-height: 43px; }
  .preview-note { padding: 9px 11px; }
  .note-prayer { top: 60px; right: -5px; }
  .note-offline { left: -5px; bottom: 35px; }
  .hero-footer { min-height: 128px; grid-template-columns: 1fr 1fr; }
  .hero-footer span { min-height: 64px; padding: 0 14px; }
  .hero-footer span:nth-child(2) { border-right: 0; }
  .hero-footer span:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .hero-footer strong { font-size: 16px; }
  .studio-intro, .product-heading, .method-heading, .contact-grid { margin-top: 22px; gap: 28px; }
  .studio-copy p, .product-intro p, .method-heading > p, .contact-copy > p { font-size: 14px; line-height: 1.75; }
  .studio-values { margin-top: 50px; }
  .value { padding: 24px 0; }
  .product-name { margin-top: 20px; }
  .product-showcase { margin-top: 48px; padding: 9px; gap: 9px; border-radius: 18px; }
  .today-panel, .prayer-panel, .guidance-panel { border-radius: 12px; }
  .today-panel { min-height: 0; padding: 18px; }
  .app-welcome { margin-top: 40px; }
  .app-welcome h3 { font-size: 28px; }
  .showcase-side { grid-template-columns: 1fr; gap: 9px; }
  .prayer-panel { min-height: 360px; padding: 18px; }
  .guidance-panel { min-height: 0; padding: 18px; grid-template-columns: 50px 1fr; gap: 14px; }
  .guidance-mark { width: 50px; height: 50px; border-radius: 12px; }
  .guidance-panel h3 { font-size: 18px; }
  .product-features { margin-top: 45px; }
  .method-list { margin-top: 45px; }
  .method-item { min-height: 0; padding: 25px 0; grid-template-columns: 38px 1fr; gap: 12px; }
  .method-item p { font-size: 13px; }
  .contact-copy .section-title { font-size: clamp(36px, 11vw, 47px); }
  .contact-links { margin-top: 32px; }
  .contact-links a { min-height: 64px; grid-template-columns: 70px 1fr auto; }
  .contact-form { padding: 20px 16px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .field input, .field select, .field textarea { font-size: 16px; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .closing-section { padding: 80px 0; }
  .closing-inner { gap: 24px; }
  .closing-inner h2 { font-size: clamp(40px, 12vw, 52px); }
  .closing-inner .button { width: 100%; }
  .site-footer { padding-top: 55px; }
  .footer-main { padding-bottom: 45px; gap: 42px; }
  .footer-links { grid-template-columns: 1fr 1fr; row-gap: 30px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
}

@media (max-width: 370px) {
  .hero h1 { font-size: 41px; }
  .preview-note { display: none; }
  .hero-product { min-height: 420px; }
  .contact-links a { grid-template-columns: 1fr auto; padding: 12px 0; }
  .contact-links small { grid-column: 1 / -1; }
  .footer-links { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
