:root {
  --blue: #0678bd;
  --blue-dark: #074f83;
  --blue-deep: #063c66;
  --blue-pale: #eaf6fc;
  --orange: #ff8a24;
  --orange-soft: #ffb35f;
  --ink: #16334a;
  --muted: #64798a;
  --cream: #fffaf3;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  width: min(1240px, calc(100% - 48px));
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--blue-dark); font-size: 22px; letter-spacing: -.5px; }
.brand strong { font-weight: 800; }
.brand-mark {
  position: relative;
  display: inline-block;
  width: 47px;
  height: 47px;
  flex: 0 0 auto;
  border-radius: 15px;
  background: var(--blue);
  box-shadow: 0 7px 18px rgba(6, 120, 189, .2);
  overflow: hidden;
}
.brand-mark--small { width: 30px; height: 30px; border-radius: 9px; box-shadow: none; }
.brand-sun { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--orange); right: 5px; top: 5px; }
.brand-mark--small .brand-sun { width: 8px; height: 8px; right: 3px; top: 3px; }
.brand-book { position: absolute; left: 7px; right: 7px; bottom: 8px; height: 18px; border-radius: 2px 2px 8px 8px; background: white; transform: perspective(30px) rotateX(7deg); }
.brand-book::after { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--blue); transform: translateX(-50%); }
.brand-book span { position: absolute; left: 5px; top: 5px; width: 9px; height: 2px; border-radius: 2px; background: #c7e9f7; box-shadow: 0 5px #c7e9f7; }
.brand-mark--small .brand-book { left: 5px; right: 5px; bottom: 5px; height: 12px; }
.site-header nav { display: flex; align-items: center; gap: 36px; font-size: 13px; font-weight: 700; color: #476476; }
.site-header nav a { transition: color .2s ease, transform .2s ease; }
.site-header nav a:hover { color: var(--blue); transform: translateY(-1px); }
.site-header .nav-cta { padding: 12px 20px; border-radius: 999px; color: white; background: var(--blue); box-shadow: 0 8px 20px rgba(6, 120, 189, .18); }
.site-header .nav-cta:hover { color: white; }
.header-date { position: absolute; left: 50%; transform: translateX(-50%); color: var(--blue-dark); font-family: Georgia, 'Times New Roman', serif; font-size: 12px; font-style: italic; font-weight: 400; text-align: center; text-transform: capitalize; white-space: nowrap; }

.hero {
  min-height: 690px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, .9fr);
  align-items: center;
  gap: 30px;
  padding: 65px max(48px, calc((100vw - 1240px) / 2)) 92px;
  background: linear-gradient(125deg, #f7fcff 0%, #fff 46%, #e8f6fc 100%);
}
.hero::before { content: ""; position: absolute; inset: auto auto -160px -90px; width: 420px; height: 320px; border-radius: 50%; background: rgba(255, 138, 36, .08); filter: blur(2px); }
.hero-copy { position: relative; z-index: 5; max-width: 650px; }
.eyebrow { margin: 0 0 16px; color: var(--orange); font-size: 11px; line-height: 1.4; font-weight: 900; letter-spacing: .19em; }
.hero h1 { max-width: 650px; margin: 0; color: var(--blue-dark); font-family: Georgia, 'Times New Roman', serif; font-size: clamp(52px, 5.2vw, 77px); line-height: .99; letter-spacing: -.045em; font-weight: 700; }
.hero h1 em { position: relative; color: var(--orange); font-style: italic; font-weight: 500; }
.hero h1 em::after { content: ""; position: absolute; left: 3px; right: 0; bottom: -8px; height: 7px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 210 10'%3E%3Cpath d='M2 7c49-7 109-7 206-3' fill='none' stroke='%23ff8a24' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat; }
.hero-text { max-width: 560px; margin: 27px 0 31px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.button { min-height: 50px; display: inline-flex; justify-content: center; align-items: center; gap: 14px; padding: 0 24px; border-radius: 999px; font-size: 13px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: white; background: var(--blue); box-shadow: 0 14px 30px rgba(6, 120, 189, .22); }
.button--primary:hover { background: var(--blue-dark); box-shadow: 0 16px 34px rgba(6, 120, 189, .29); }
.button--primary span { font-size: 19px; }
.button--outline { color: var(--blue); border: 1px solid #b8dcea; background: white; }
.text-link { padding: 10px 0 6px; color: var(--blue-dark); font-size: 13px; font-weight: 800; border-bottom: 2px solid var(--orange); }
.daily-count { display: flex; align-items: center; gap: 12px; margin-top: 46px; color: #7390a0; }
.daily-count strong { color: var(--blue); font-family: Georgia, serif; font-size: 30px; line-height: 1; }
.daily-count span { padding-left: 12px; border-left: 1px solid #c9dde7; font-size: 10px; line-height: 1.45; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.hero-visual { min-height: 510px; position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; }
.orange-orbit { position: absolute; border: 2px solid rgba(255, 138, 36, .25); border-radius: 50%; transform: rotate(-18deg); }
.orbit-one { width: 540px; height: 390px; }
.orbit-two { width: 420px; height: 520px; transform: rotate(33deg); }
.bible-scene { position: relative; width: 430px; height: 320px; display: flex; align-items: flex-end; justify-content: center; filter: drop-shadow(0 35px 30px rgba(3, 78, 123, .22)); }
.sun-glow { position: absolute; width: 260px; height: 260px; left: 84px; top: 20px; border-radius: 50%; background: radial-gradient(circle at 45% 45%, #fff7cf 0, #ffd37d 36%, rgba(255, 152, 49, .28) 67%, transparent 68%); box-shadow: 0 0 60px rgba(255, 173, 59, .35); }
.book { position: absolute; bottom: 36px; width: 210px; height: 135px; background: linear-gradient(160deg, #fff 0%, #f2f4eb 70%); border: 2px solid #aac8d5; box-shadow: inset 0 -9px 0 #e4e8dd, 0 11px 0 #07598e; }
.book-left { left: 8px; border-radius: 8px 14px 12px 28px; transform: perspective(250px) rotateY(9deg) rotateZ(5deg); }
.book-right { right: 8px; border-radius: 14px 8px 28px 12px; transform: perspective(250px) rotateY(-9deg) rotateZ(-5deg); }
.book i, .book b, .book span { position: absolute; left: 25px; right: 20px; height: 2px; background: #cbd5d4; border-radius: 2px; }
.book i { top: 28px; } .book b { top: 49px; } .book span { top: 70px; }
.book-center { position: absolute; z-index: 3; bottom: 32px; width: 12px; height: 145px; border-radius: 50%; background: linear-gradient(90deg, rgba(3,68,107,.08), white, rgba(3,68,107,.14)); }
.ray { position: absolute; z-index: 4; width: 3px; height: 36px; border-radius: 3px; background: var(--orange); transform-origin: center 165px; top: -15px; left: 50%; }
.ray-1 { transform: rotate(-44deg); } .ray-2 { transform: rotate(-22deg); } .ray-3 { transform: rotate(0); } .ray-4 { transform: rotate(22deg); } .ray-5 { transform: rotate(44deg); }
.floating-note { position: absolute; z-index: 8; padding: 17px 19px; border-radius: 18px; background: rgba(255,255,255,.95); box-shadow: 0 18px 45px rgba(12,80,123,.16); border: 1px solid rgba(255,255,255,.9); backdrop-filter: blur(10px); }
.floating-note span { color: var(--orange); font-size: 20px; }
.floating-note p { margin: 8px 0 4px; color: var(--blue-dark); font-family: Georgia, serif; font-size: 14px; line-height: 1.4; }
.floating-note small { color: var(--blue); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.note-one { width: 205px; left: -8px; top: 62px; transform: rotate(-4deg); animation: float 5s ease-in-out infinite; }
.note-two { width: 166px; right: -22px; bottom: 70px; transform: rotate(4deg); animation: float 5s 1.2s ease-in-out infinite; }
@keyframes float { 0%,100% { translate: 0 0; } 50% { translate: 0 -10px; } }

.today-section { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: 112px 0; }
.section-heading { display: flex; align-items: center; gap: 24px; margin-bottom: 38px; }
.section-heading h2, .promise-heading h2, .cta-section h2 { margin: 0; color: var(--blue-dark); font-family: Georgia, serif; font-size: clamp(33px, 4vw, 49px); line-height: 1.1; letter-spacing: -.035em; }
.today-section .section-heading h2 { font-size: 18px; line-height: 1.35; letter-spacing: 0; font-weight: 400; }
.section-heading .eyebrow { margin-bottom: 8px; }
.section-number { color: #d4e8f1; font-family: Georgia, serif; font-size: 56px; line-height: 1; font-style: italic; }
.scripture-card { min-height: 250px; display: grid; grid-template-columns: 110px 1fr; align-items: center; gap: 30px; padding: 48px 54px; border: 1px solid #dcebf2; border-radius: 28px; background: linear-gradient(125deg, #fff 0%, #f5fbfe 100%); box-shadow: 0 24px 70px rgba(10, 82, 124, .08); overflow: hidden; position: relative; }
.scripture-card::after { content: ""; position: absolute; right: -50px; bottom: -65px; width: 210px; height: 210px; border: 1px solid rgba(255,138,36,.28); border-radius: 50%; box-shadow: 0 0 0 28px rgba(255,138,36,.05), 0 0 0 56px rgba(255,138,36,.035); }
.scripture-symbol { color: var(--orange); font-family: Georgia, serif; font-size: 120px; line-height: .7; transform: translateY(20px); }
.scripture-content { position: relative; z-index: 2; }
.scripture-message { max-width: 700px; margin: 0 0 24px; color: var(--blue-deep); font-family: Georgia, serif; font-size: clamp(25px, 3vw, 37px); line-height: 1.34; }
.scripture-reference { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.scripture-reference span { width: 28px; height: 2px; background: var(--orange); }
.scripture-reference strong { color: var(--blue); }

.quote-section { min-height: 430px; display: grid; grid-template-columns: .65fr 1.6fr .35fr; align-items: center; background: var(--blue-dark); color: white; overflow: hidden; }
.quote-art { height: 100%; position: relative; display: flex; justify-content: center; align-items: center; background: linear-gradient(145deg, var(--orange), #ffad50); clip-path: polygon(0 0, 82% 0, 100% 100%, 0 100%); }
.quote-art::before, .quote-art::after { content: ""; position: absolute; width: 230px; height: 230px; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; }
.quote-art::after { width: 320px; height: 320px; }
.quote-art span { position: relative; z-index: 2; color: white; font-family: Georgia, serif; font-size: 220px; line-height: 1; transform: translateY(55px); opacity: .94; }
.quote-content { max-width: 790px; padding: 72px 70px; }
.quote-content .eyebrow { color: #ffbd78; }
.quote-content blockquote { margin: 0; font-family: Georgia, serif; font-size: clamp(31px, 4vw, 48px); line-height: 1.25; letter-spacing: -.025em; }
.author { display: flex; align-items: center; gap: 12px; margin: 28px 0 0; color: #bfe0ee; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.author span { width: 35px; height: 2px; background: var(--orange); }
.quote-side { align-self: stretch; display: flex; justify-content: center; align-items: center; writing-mode: vertical-rl; color: rgba(255,255,255,.32); border-left: 1px solid rgba(255,255,255,.11); font-size: 10px; font-weight: 900; letter-spacing: .34em; }

.promise-section { padding: 116px max(48px, calc((100vw - 1120px) / 2)) 128px; color: white; background: radial-gradient(circle at 75% 26%, #0c73ac 0, transparent 33%), linear-gradient(145deg, #063b64 0%, #075484 70%, #07456f 100%); overflow: hidden; }
.promise-heading { display: grid; grid-template-columns: 60px 1fr; gap: 22px; max-width: 780px; margin-bottom: 56px; }
.section-number--light { color: rgba(255,255,255,.2); }
.eyebrow--light { color: #ffb36e; }
.promise-heading h2 { color: white; }
.promise-heading > div > p:last-child { max-width: 680px; color: #c5dfeb; font-size: 14px; line-height: 1.7; }
.promise-stage { min-height: 520px; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.promise-stage::before { content: ""; position: absolute; width: 510px; height: 510px; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); box-shadow: 0 0 0 50px rgba(255,255,255,.025), 0 0 0 100px rgba(255,255,255,.018); }
.promise-box { width: 300px; height: 250px; position: relative; z-index: 4; padding: 0; border: 0; background: transparent; cursor: pointer; perspective: 900px; transition: transform .25s ease; }
.promise-box:hover { transform: translateY(-7px) rotate(-1deg); }
.promise-box:focus-visible { outline: 3px solid white; outline-offset: 10px; border-radius: 18px; }
.box-body { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 0; height: 180px; display: block; border-radius: 8px 8px 20px 20px; background: linear-gradient(135deg, #ff9d3c 0%, #ff7f18 73%); box-shadow: inset -18px -18px 28px rgba(181,70,0,.2), 0 32px 45px rgba(1,25,43,.35); }
.box-body::before { content: ""; position: absolute; inset: 0 auto 0 50%; width: 44px; background: #ffe2b9; transform: translateX(-50%); box-shadow: inset -6px 0 rgba(216,126,44,.12); }
.box-body i, .box-body b { position: absolute; z-index: 3; top: -5px; width: 72px; height: 47px; border: 16px solid #ffe2b9; }
.box-body i { left: 74px; border-radius: 75% 10% 65% 20%; transform: rotate(30deg); }
.box-body b { right: 74px; border-radius: 10% 75% 20% 65%; transform: rotate(-30deg); }
.box-label { position: absolute; z-index: 5; left: 50%; top: 58%; transform: translate(-50%, -50%); display: flex; align-items: center; gap: 8px; width: 145px; padding: 9px 12px; color: var(--blue-dark); background: white; border-radius: 9px; box-shadow: 0 6px 15px rgba(121,56,0,.16); text-align: left; }
.box-label strong { font-size: 9px; line-height: 1.3; letter-spacing: .09em; }
.box-lid { position: absolute; z-index: 5; left: 5px; right: 5px; top: 46px; height: 62px; border-radius: 13px; background: linear-gradient(135deg, #ffa84f 0%, #ff861d 75%); box-shadow: inset -10px -10px 20px rgba(176,66,0,.14), 0 14px 20px rgba(1,25,43,.22); transform-origin: center bottom; transition: transform .9s cubic-bezier(.17,.67,.24,1.18), opacity .5s .35s; }
.box-lid::after { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 49px; background: #ffebcc; transform: translateX(-50%); }
.box-lid i, .box-lid b { position: absolute; z-index: 2; top: -40px; width: 88px; height: 57px; border: 18px solid #ffebcc; }
.box-lid i { left: 72px; border-radius: 75% 10% 70% 20%; transform: rotate(24deg); }
.box-lid b { right: 72px; border-radius: 10% 75% 20% 70%; transform: rotate(-24deg); }
.open-hint { position: relative; z-index: 6; margin-top: 24px; padding: 10px 16px; color: #d4e7f0; border: 0; background: transparent; cursor: pointer; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.open-hint span { display: inline-block; margin-left: 6px; color: var(--orange-soft); animation: nudge 1.4s ease-in-out infinite; }
@keyframes nudge { 50% { transform: translateY(5px); } }
.spark { position: absolute; z-index: 7; color: #ffd79c; font-size: 28px; opacity: 0; transition: .35s ease; }
.spark-1 { left: 32%; top: 34%; } .spark-2 { right: 30%; top: 25%; } .spark-3 { right: 35%; bottom: 20%; }
.revealed-promise { position: absolute; z-index: 3; width: min(650px, 90%); padding: 45px 54px; color: var(--ink); text-align: center; border-radius: 28px; background: white; box-shadow: 0 35px 70px rgba(0,22,39,.32); opacity: 0; transform: translateY(75px) scale(.86); pointer-events: none; transition: opacity .6s .42s ease, transform .7s .4s cubic-bezier(.18,.77,.25,1.15); }
.revealed-promise::before { content: "✦"; position: absolute; left: 24px; top: 19px; color: var(--orange); font-size: 22px; }
.revealed-promise .eyebrow { margin-bottom: 18px; }
.revealed-promise h3 { margin: 0; color: var(--blue-dark); font-family: Georgia, serif; font-size: clamp(26px, 4vw, 40px); line-height: 1.3; }
.revealed-reference { display: inline-block; margin: 23px 0 25px; padding: 8px 16px; color: var(--blue); background: var(--blue-pale); border-radius: 999px; font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.share-button { width: fit-content; display: flex; align-items: center; justify-content: center; gap: 9px; margin: 0 auto; padding: 13px 20px; color: white; border-radius: 999px; background: #25a95a; box-shadow: 0 9px 20px rgba(37, 169, 90, .2); cursor: pointer; font-size: 12px; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.share-button:hover { transform: translateY(-2px); background: #168c47; }
.is-open .box-lid { transform: translateY(-140px) rotateX(-35deg) rotateZ(8deg) scale(.8); opacity: 0; }
.is-open .box-body { animation: box-away .55s .25s forwards; }
.is-open .revealed-promise { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.is-open .spark { opacity: 1; transform: scale(1.4) rotate(25deg); transition-delay: .42s; }
@keyframes box-away { to { opacity: 0; transform: translateY(80px) scale(.68); } }

.themes-section { padding: 112px max(48px, calc((100vw - 1120px) / 2)); background: linear-gradient(180deg, #f4fbfe 0%, #fff 100%); }
.themes-intro { display: grid; grid-template-columns: minmax(0, 1fr) 330px; align-items: end; gap: 48px; margin-bottom: 34px; }
.themes-intro h2 { max-width: 720px; margin: 0; color: var(--blue-dark); font-family: Georgia, serif; font-size: clamp(36px, 4.4vw, 54px); line-height: 1.08; letter-spacing: -.04em; }
.themes-intro > div > p:last-child { max-width: 690px; margin: 18px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.theme-search { min-height: 55px; display: flex; align-items: center; gap: 10px; padding: 0 18px; border: 1px solid #cbe2ed; border-radius: 999px; background: white; box-shadow: 0 12px 30px rgba(6, 79, 131, .08); }
.theme-search:focus-within { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(6,120,189,.1); }
.search-icon { color: var(--orange); font-size: 24px; line-height: 1; transform: rotate(-20deg); }
.theme-search input { width: 100%; padding: 0; color: var(--ink); border: 0; outline: 0; background: transparent; font: inherit; font-size: 14px; }
.theme-search input::placeholder { color: #8aa0ae; }
.sr-only { width: 1px; height: 1px; position: absolute; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.theme-categories { display: flex; flex-direction: column; gap: 66px; }
.theme-category-heading { display: grid; grid-template-columns: 46px 1fr; align-items: start; gap: 16px; margin-bottom: 24px; }
.category-symbol { width: 46px; height: 46px; display: grid; place-items: center; color: white; border-radius: 15px; background: var(--orange); box-shadow: 0 10px 22px rgba(255,138,36,.2); }
.theme-category h3 { margin: 0 0 6px; color: var(--blue-dark); font-family: Georgia, serif; font-size: 29px; letter-spacing: -.025em; }
.theme-category-heading p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.theme-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.theme-card { min-height: 138px; display: grid; grid-template-columns: 42px 1fr auto; align-items: start; gap: 14px; padding: 22px 19px; color: inherit; text-align: left; border: 1px solid #dcebf2; border-radius: 19px; background: white; box-shadow: 0 10px 30px rgba(8, 78, 119, .045); cursor: pointer; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.theme-card:hover { transform: translateY(-4px); border-color: #9dd1e7; box-shadow: 0 18px 40px rgba(8, 78, 119, .1); }
.theme-card:focus-visible { outline: 3px solid rgba(6,120,189,.35); outline-offset: 3px; }
.theme-letter { width: 42px; height: 42px; display: grid; place-items: center; color: var(--blue); border-radius: 13px; background: var(--blue-pale); font-family: Georgia, serif; font-size: 20px; font-weight: 700; }
.theme-card-copy { min-width: 0; display: flex; flex-direction: column; }
.theme-card-copy strong { margin: 1px 0 7px; color: var(--blue-dark); font-family: Georgia, serif; font-size: 19px; line-height: 1.15; }
.theme-card-copy small { min-height: 34px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.theme-card-copy > span { margin-top: 10px; color: var(--orange); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.theme-arrow { color: #94adba; font-size: 16px; transition: color .2s ease, transform .2s ease; }
.theme-card:hover .theme-arrow { color: var(--orange); transform: translate(2px, -2px); }
.theme-empty { padding: 46px; display: flex; flex-direction: column; gap: 8px; color: var(--muted); border: 1px dashed #bedce9; border-radius: 22px; background: white; text-align: center; }
.theme-empty strong { color: var(--blue-dark); font-family: Georgia, serif; font-size: 24px; }
.theme-modal-backdrop { position: fixed; z-index: 1000; inset: 0; display: grid; place-items: center; padding: 28px; background: rgba(4, 38, 62, .72); backdrop-filter: blur(8px); animation: modal-fade .2s ease-out; }
.theme-modal { width: min(820px, 100%); max-height: min(88vh, 900px); display: flex; flex-direction: column; overflow: hidden; border: 1px solid rgba(255,255,255,.75); border-radius: 28px; background: #fff; box-shadow: 0 38px 95px rgba(0, 24, 42, .38); animation: modal-rise .28s ease-out; }
.theme-modal-header { position: relative; display: grid; grid-template-columns: 62px minmax(0, 1fr) auto; align-items: start; gap: 18px; padding: 28px 30px 25px; color: white; background: radial-gradient(circle at 80% 10%, #1086c2 0, transparent 32%), linear-gradient(135deg, #063c66, #075786); }
.theme-modal-mark { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 19px; color: var(--blue-dark); background: linear-gradient(145deg, #fff, #e8f6fc); font-family: Georgia, serif; font-size: 28px; font-weight: 700; box-shadow: 0 12px 26px rgba(0,20,35,.2); }
.theme-modal-header .eyebrow { margin: 3px 0 7px; color: #ffb66f; }
.theme-modal-header h2 { margin: 0; font-family: Georgia, serif; font-size: 35px; line-height: 1.05; letter-spacing: -.03em; }
.theme-modal-header > div > p:last-child { margin: 9px 0 0; color: #c9e4ef; font-family: Georgia, serif; font-size: 14px; line-height: 1.45; }
.theme-modal-close { width: 40px; height: 40px; display: grid; place-items: center; padding: 0; color: white; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: rgba(255,255,255,.1); cursor: pointer; font-size: 25px; line-height: 1; transition: transform .2s ease, background .2s ease; }
.theme-modal-close:hover { transform: rotate(5deg); background: rgba(255,255,255,.2); }
.theme-modal-close:focus-visible { outline: 3px solid #ffbd78; outline-offset: 3px; }
.theme-modal-scroll { overflow-y: auto; overscroll-behavior: contain; padding: 0 30px 30px; scrollbar-color: #8ac4df #edf7fb; }
.theme-modal-summary { position: sticky; z-index: 2; top: 0; display: flex; justify-content: space-between; gap: 16px; padding: 18px 0 14px; color: var(--muted); border-bottom: 1px solid #dfeef4; background: white; font-size: 10px; letter-spacing: .07em; text-transform: uppercase; }
.theme-modal-summary strong { color: var(--blue); }
.theme-verse-list { margin: 0; padding: 8px 0 0; list-style: none; counter-reset: verses; }
.theme-verse-list li { counter-increment: verses; display: grid; grid-template-columns: 37px 1fr; gap: 14px; padding: 22px 2px; border-bottom: 1px solid #e7f0f4; }
.theme-verse-list li:last-child { border-bottom: 0; }
.verse-order::before { content: counter(verses, decimal-leading-zero); width: 35px; height: 35px; display: grid; place-items: center; color: var(--orange); border-radius: 11px; background: #fff4e8; font-size: 10px; font-weight: 900; }
.theme-verse-list strong { color: var(--blue); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.theme-verse-list blockquote { margin: 8px 0 0; color: var(--blue-deep); font-family: Georgia, serif; font-size: 18px; line-height: 1.62; }
@keyframes modal-fade { from { opacity: 0; } }
@keyframes modal-rise { from { opacity: 0; transform: translateY(18px) scale(.97); } }

.cta-section { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: 84px 0; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 26px; }
.cta-section .brand-mark { width: 70px; height: 70px; border-radius: 21px; }
.cta-section .brand-book { left: 11px; right: 11px; bottom: 12px; height: 27px; }
.cta-section .brand-sun { width: 20px; height: 20px; right: 8px; top: 8px; }
.cta-section .eyebrow { margin-bottom: 8px; }
.cta-section h2 { max-width: 600px; font-size: clamp(27px, 3vw, 38px); }
.cta-links { display: flex; gap: 12px; }

footer { padding: 62px 24px 38px; text-align: center; color: #82929c; border-top: 1px solid #e5eef2; background: #fbfdfe; }
footer img { width: min(245px, 70vw); height: auto; margin: 0 auto 28px; }
footer div { display: flex; justify-content: center; gap: 10px; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 1020px) {
  .site-header nav a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 52px; }
  .hero-copy { max-width: 760px; margin: 0 auto; }
  .hero h1, .hero-text { margin-left: auto; margin-right: auto; }
  .hero-actions, .daily-count { justify-content: center; }
  .hero-visual { margin-top: -20px; }
  .quote-section { grid-template-columns: 230px 1fr; }
  .quote-side { display: none; }
  .cta-section { grid-template-columns: auto 1fr; }
  .cta-links { grid-column: 2; }
  .theme-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .site-header { width: calc(100% - 28px); height: 76px; }
  .brand { font-size: 19px; }
  .brand-mark { width: 41px; height: 41px; border-radius: 13px; }
  .site-header .nav-cta { padding: 10px 15px; font-size: 11px; }
  .hero { min-height: auto; grid-template-columns: minmax(0, 1fr); padding: 40px 20px 70px; }
  .brand > span { display: none; }
  .header-date { max-width: 140px; overflow: hidden; text-overflow: ellipsis; font-size: 10px; }
  .hero h1 { font-size: clamp(45px, 14vw, 64px); }
  .hero-text { font-size: 15px; line-height: 1.65; }
  .hero-actions { gap: 18px; }
  .button { width: 100%; }
  .hero-visual { min-height: 390px; margin-top: 18px; transform: scale(.79); }
  .floating-note { transform: none; }
  .note-one { left: -38px; } .note-two { right: -40px; }
  .today-section { width: calc(100% - 32px); padding: 78px 0; }
  .section-heading { align-items: flex-start; gap: 14px; }
  .section-number { font-size: 43px; }
  .section-heading h2 { font-size: 31px; }
  .scripture-card { grid-template-columns: 1fr; gap: 15px; padding: 35px 28px; }
  .scripture-symbol { height: 55px; font-size: 95px; }
  .scripture-message { font-size: 26px; }
  .quote-section { min-height: auto; grid-template-columns: 1fr; }
  .quote-art { height: 120px; clip-path: polygon(0 0, 100% 0, 100% 65%, 0 100%); align-items: flex-start; }
  .quote-art span { font-size: 150px; transform: translateY(-10px); }
  .quote-content { padding: 45px 27px 65px; text-align: center; }
  .quote-content blockquote { font-size: 31px; }
  .author { justify-content: center; }
  .promise-section { padding: 80px 20px 90px; }
  .promise-heading { grid-template-columns: 1fr; gap: 4px; text-align: center; }
  .promise-heading .section-number { display: none; }
  .promise-heading h2 { font-size: 38px; }
  .promise-stage { min-height: 480px; }
  .promise-stage::before { width: 360px; height: 360px; }
  .promise-box { transform: scale(.84); }
  .promise-box:hover { transform: scale(.84) translateY(-5px); }
  .revealed-promise { width: 100%; padding: 40px 24px; }
  .revealed-promise h3 { font-size: 28px; }
  .themes-section { padding: 78px 16px; }
  .themes-intro { grid-template-columns: 1fr; gap: 25px; text-align: center; }
  .themes-intro h2 { font-size: 38px; }
  .theme-search { width: 100%; }
  .theme-categories { gap: 50px; }
  .theme-category-heading { grid-template-columns: 1fr; text-align: center; }
  .category-symbol { margin: 0 auto; }
  .theme-grid { grid-template-columns: 1fr; }
  .theme-card { min-height: 122px; }
  .theme-modal-backdrop { padding: 10px; align-items: end; }
  .theme-modal { width: 100%; max-height: 92vh; border-radius: 23px 23px 15px 15px; }
  .theme-modal-header { grid-template-columns: 48px 1fr auto; gap: 12px; padding: 21px 17px 19px; }
  .theme-modal-mark { width: 48px; height: 48px; border-radius: 15px; font-size: 23px; }
  .theme-modal-header h2 { font-size: 28px; }
  .theme-modal-header > div > p:last-child { font-size: 12px; }
  .theme-modal-close { width: 35px; height: 35px; font-size: 22px; }
  .theme-modal-scroll { padding: 0 17px 22px; }
  .theme-modal-summary { align-items: flex-start; flex-direction: column; gap: 5px; }
  .theme-verse-list li { grid-template-columns: 34px 1fr; gap: 10px; padding: 19px 0; }
  .theme-verse-list blockquote { font-size: 17px; line-height: 1.58; }
  .cta-section { width: calc(100% - 32px); padding: 68px 0; grid-template-columns: 1fr; text-align: center; }
  .cta-section .brand-mark { margin: 0 auto; }
  .cta-links { grid-column: auto; flex-direction: column; width: 100%; }
  footer div { flex-wrap: wrap; }
}

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


[hidden] {
  display: none !important;
}
