:root {
  --bg: #050607;
  --surface: rgba(17, 20, 22, 0.72);
  --surface-strong: rgba(13, 16, 18, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 247, 234, 0.1);
  --text: #fff7ea;
  --muted: #b4aea2;
  --primary: #7db792;
  --primary-deep: #17362d;
  --accent: #f0c068;
  --accent-soft: rgba(240, 192, 104, 0.14);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --section-width: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #050607;
  height: 100%;
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  height: 100%;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(125, 183, 146, 0.14), transparent 34%),
    radial-gradient(circle at top right, rgba(240, 192, 104, 0.08), transparent 30%),
    linear-gradient(180deg, #08090a 0%, #050607 38%, #090b0d 100%);
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.46), transparent 100%);
}

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

button {
  font: inherit;
}

.page-glow {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(36px);
  pointer-events: none;
  opacity: 0.4;
  z-index: -1;
}

.page-glow-left {
  top: -12rem;
  left: -12rem;
  background: rgba(125, 183, 146, 0.2);
}

.page-glow-right {
  top: 10rem;
  right: -14rem;
  background: rgba(240, 192, 104, 0.15);
}

.site-footer,
.section-shell {
  width: var(--section-width);
  margin: 0 auto;
}

.site-header-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 16px 20px 0;
}

.site-header {
  width: var(--section-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  background: rgba(10, 12, 14, 0.58);
  backdrop-filter: blur(16px);
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

main {
  padding-top: 104px;
}

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

.brand-mark {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 0.98rem;
  font-weight: 800;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: rgba(255, 247, 234, 0.84);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lang-button {
  min-width: 46px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: rgba(255, 247, 234, 0.72);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.lang-button.is-active {
  color: #111;
  border-color: rgba(240, 192, 104, 0.4);
  background: linear-gradient(135deg, #f6d28d 0%, #f0c068 100%);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    opacity 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.button-primary {
  color: #111;
  background: linear-gradient(135deg, #f6d28d 0%, #f0c068 100%);
  box-shadow: 0 16px 40px rgba(240, 192, 104, 0.22);
}

.button-secondary {
  border-color: rgba(125, 183, 146, 0.28);
  background: rgba(125, 183, 146, 0.12);
}

.store-button {
  gap: 10px;
  min-width: 184px;
}

.store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.store-badge-link:hover,
.store-badge-link:focus-visible {
  transform: translateY(-1px);
}

.store-badge-image {
  display: none;
  width: auto;
  height: 64px;
}

.store-badge-image-play {
  height: 66px;
}

.store-badge-image-large {
  height: 68px;
}

.store-badge-image-play.store-badge-image-large {
  height: 70px;
}

html[lang="tr"] .store-badge-image[data-badge-locale="tr"] {
  display: block;
}

html[lang="en"] .store-badge-image[data-badge-locale="en"] {
  display: block;
}

.store-badge-link.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.store-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.store-icon svg {
  width: 20px;
  height: 20px;
}

.button-ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.button.is-disabled,
.footer-links a.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: 40px;
  align-items: start;
  padding-top: 42px;
}

.hero-copy {
  padding: 0 0 14px;
}

.eyebrow,
.trust-kicker,
.panel-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.story-card h3,
.showcase-panel h3,
.trust-strip h2,
.closing-shell h2,
.footer-title,
.today-title,
.mini-screen h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 12ch;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3rem, 5.4vw, 5rem);
  line-height: 1.06;
}

.hero-text {
  max-width: 60ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

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

.hero-stats li,
.trust-strip article,
.feature-card,
.story-card,
.showcase-panel,
.closing-shell,
.faq-list details {
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-stats li {
  padding: 18px 18px 20px;
  border-radius: var(--radius-md);
}

.hero-stats strong,
.feature-card h3,
.story-card h3,
.showcase-panel h3 {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.hero-stats span,
.feature-card p,
.story-card p,
.showcase-panel ul,
.trust-strip span,
.faq-list p,
.footer-text {
  color: var(--muted);
  line-height: 1.7;
}

.hero-visual {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hero-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-orbit-large {
  inset: 8% 3% auto auto;
  width: 540px;
  height: 540px;
}

.hero-orbit-small {
  inset: auto auto 13% 0;
  width: 240px;
  height: 240px;
}

.phone-stack {
  position: relative;
  width: min(100%, 640px);
  min-height: auto;
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: min(100%, 432px);
  padding: 18px 14px 14px;
  border-radius: 52px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, #15181b 0%, #090b0d 100%);
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.phone-frame::before,
.phone-frame::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.phone-frame::before {
  top: 152px;
  left: -3px;
  width: 3px;
  height: 56px;
}

.phone-frame::after {
  top: 186px;
  right: -3px;
  width: 3px;
  height: 88px;
}

.phone-main {
  z-index: 2;
}

.phone-main-shot {
  width: min(100%, 436px);
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.phone-main-shot::before,
.phone-main-shot::after {
  display: none;
}

.phone-screenshot {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.phone-topbar {
  width: 34%;
  height: 28px;
  margin: 2px auto 12px;
  border-radius: 999px;
  background: rgba(5, 6, 7, 0.92);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.06);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 40px;
  background:
    radial-gradient(circle at top right, rgba(240, 192, 104, 0.1), transparent 28%),
    radial-gradient(circle at top left, rgba(125, 183, 146, 0.14), transparent 34%),
    linear-gradient(180deg, #111416 0%, #090b0d 100%);
}

.phone-screen::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 34%;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-50%);
}

.screen-badge,
.verse-chip,
.screen-hero-card span,
.community-card span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.74rem;
  font-weight: 700;
}

.screen-badge,
.verse-chip {
  color: #111;
  background: linear-gradient(135deg, #e7d5b0 0%, #f0c068 100%);
}

.screen-kicker {
  margin: 0 0 6px;
  color: rgba(255, 226, 186, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.today-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.today-title {
  color: #fff8ed;
  font-size: 2.25rem;
  line-height: 1.05;
}

.streak-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.flame-dot {
  display: inline-block;
  width: 14px;
  height: 18px;
  border-radius: 70% 70% 70% 70% / 90% 90% 45% 45%;
  background: linear-gradient(180deg, #ffcb79 0%, #f0c068 45%, #d46f35 100%);
  transform: rotate(-8deg);
  box-shadow: 0 0 16px rgba(240, 192, 104, 0.36);
}

.streak-pill span {
  color: #fff3dd;
  font-size: 0.95rem;
  font-weight: 800;
}

.streak-pill small {
  color: rgba(255, 243, 221, 0.74);
  font-size: 0.72rem;
  font-weight: 700;
}

.streak-row-mock {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.streak-day-mock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.streak-day-mock small {
  color: rgba(255, 245, 229, 0.48);
  font-size: 0.72rem;
  font-weight: 700;
}

.streak-circle-mock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  color: #f7f0e1;
  font-size: 0.84rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.streak-circle-mock.done {
  background: rgba(240, 192, 104, 0.2);
  border-color: transparent;
}

.streak-circle-mock.active {
  border-color: #f0c068;
  background: rgba(8, 9, 10, 0.96);
}

.task-cluster,
.prayer-panel,
.dhikr-panel,
.community-live-card,
.queue-card {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.task-cluster-header,
.prayer-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.task-cluster-header p,
.prayer-panel-head p,
.dhikr-panel p,
.queue-card p,
.community-live-card small {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.task-cluster-header span,
.prayer-panel-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: #f0c068;
  background: rgba(240, 192, 104, 0.1);
  font-size: 0.72rem;
  font-weight: 800;
}

.task-preview-card {
  position: relative;
  margin-top: 12px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.03);
}

.task-preview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.task-preview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 18, 21, 0.08), rgba(9, 11, 12, 0.56), rgba(5, 7, 7, 0.9));
}

.task-preview-verse::before {
  background-image: url("./assets/versebackground.png");
}

.task-preview-dhikr::before {
  background-image: url("./assets/tesbih.png");
}

.task-preview-asma::before {
  background-image: url("./assets/namesofgod.png");
}

.task-preview-overlay {
  position: relative;
  z-index: 1;
  min-height: 92px;
  padding: 14px 16px;
}

.task-preview-collapsed {
  display: flex;
  align-items: center;
  min-height: 62px;
  gap: 14px;
}

.task-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 40px;
  padding: 0 12px;
  border-radius: 14px;
  color: #111;
  font-size: 0.72rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f6d28d 0%, #f0c068 100%);
}

.task-icon-block {
  min-width: 54px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: #f7f0e1;
  font-size: 1rem;
  background: rgba(42, 82, 59, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.task-icon-block svg {
  width: 22px;
  height: 22px;
}

.task-icon-soft {
  color: #d7f0de;
  background: rgba(36, 71, 49, 0.78);
}

.task-icon-dark {
  color: #e8ddc8;
  background: rgba(36, 71, 49, 0.72);
}

.task-copy {
  flex: 1;
}

.task-copy strong,
.prayer-panel-head strong,
.dhikr-panel strong,
.community-live-card strong,
.queue-card b,
.mini-screen h3 {
  font-size: 1.06rem;
}

.task-preview-collapsed strong {
  flex: 1;
  color: #fff7ea;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.25;
}

.task-item b,
.task-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  border-radius: 999px;
  color: #f0c068;
  background: rgba(0, 0, 0, 0.18);
  font-size: 1rem;
  font-weight: 800;
}

.task-progress {
  color: #ffd5ad;
  background: rgba(242, 169, 106, 0.14);
}

.prayer-panel {
  position: relative;
  background:
    linear-gradient(135deg, rgba(125, 183, 146, 0.18), rgba(23, 54, 45, 0.12)),
    rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.prayer-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 11, 0.08), rgba(8, 10, 11, 0.58)),
    url("./assets/alnabawi.png") center/cover no-repeat;
  opacity: 0.48;
}

.prayer-panel-head,
.prayer-times-row {
  position: relative;
  z-index: 1;
}

.prayer-times-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.prayer-times-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 14px;
  color: #f7f0e1;
  font-size: 0.76rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.prayer-times-row em {
  margin-right: 4px;
  font-style: normal;
}

.dhikr-panel {
  background:
    linear-gradient(180deg, rgba(240, 192, 104, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
}

.dhikr-progress {
  margin-top: 14px;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.dhikr-progress span {
  display: block;
  width: 33%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f0c068 0%, #7db792 100%);
}

.dhikr-panel small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.mini-phone {
  position: absolute;
  width: 280px;
  padding: 14px 10px 10px;
  z-index: 3;
}

.mini-phone .phone-topbar {
  height: 18px;
  margin-bottom: 10px;
}

.mini-screen {
  padding: 16px;
  border-radius: 22px;
}

.mini-screen h3 {
  color: #fff8ed;
  font-size: 1.55rem;
  line-height: 1.05;
}

.mini-phone-community {
  top: 58px;
  right: -18px;
  transform: rotate(7deg);
}

.mini-phone-chat {
  left: -2px;
  bottom: 48px;
  transform: rotate(-7deg);
}

.community-live-card {
  background:
    linear-gradient(135deg, rgba(125, 183, 146, 0.18), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
}

.community-live-card-photo {
  position: relative;
  overflow: hidden;
}

.community-live-card-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 13, 14, 0.04), rgba(12, 13, 14, 0.78)),
    url("./assets/communitypray.png") center/cover no-repeat;
  opacity: 0.96;
}

.community-live-card-photo > * {
  position: relative;
  z-index: 1;
}

.community-live-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #111;
  font-size: 0.72rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f6d28d 0%, #f0c068 100%);
}

.queue-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
}

.queue-card span {
  color: #fff7ea;
  font-size: 0.82rem;
}

.chat-bubble {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 0.82rem;
  line-height: 1.5;
}

.chat-bubble-assistant {
  color: #fff7ea;
  background: rgba(255, 255, 255, 0.07);
}

.chat-bubble-user {
  margin-left: auto;
  max-width: 85%;
  color: #d7f0de;
  background: rgba(23, 54, 45, 0.86);
}

.suggestion-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.suggestion-chip-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
}

.community-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.community-card span {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.phone-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.phone-nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--muted);
}

.phone-nav-item.active {
  color: #111;
  background: linear-gradient(135deg, #f6d28d 0%, #f0c068 100%);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.trust-strip article {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.trust-strip h2 {
  font-size: 1.4rem;
  line-height: 1.15;
}

.section-stack,
.story-layout,
.showcase-shell,
.faq-shell {
  padding-top: 120px;
}

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

.section-heading.narrow {
  max-width: 640px;
}

.section-heading-inline {
  max-width: none;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1;
}

.feature-grid,
.story-grid {
  display: grid;
  gap: 18px;
}

.story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.story-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.feature-card::after,
.story-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 0 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--border), rgba(255, 255, 255, 0));
}

.feature-index,
.story-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #111;
  font-weight: 800;
  background: linear-gradient(135deg, #f6d28d 0%, #f0c068 100%);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.promise-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  min-width: 0;
  height: 100%;
}

.promise-card h3 {
  margin: 0;
  width: min(100%, 82%);
  font-size: 1.08rem;
  line-height: 1.35;
  align-self: center;
}

.promise-card p {
  margin: 0;
  width: min(100%, 82%);
  color: var(--muted);
  line-height: 1.7;
  align-self: center;
}

.promise-embed {
  display: block;
  width: 100%;
  max-width: none;
  height: 720px;
  margin: 0;
  border-radius: 28px;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.locale-shot-frame {
  width: 100%;
  overflow: hidden;
}

.locale-shot-frame-today {
  filter: drop-shadow(0 36px 90px rgba(0, 0, 0, 0.42));
}

.locale-shot-frame-promise {
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.locale-shot-frame-promise .promise-embed {
  box-shadow: none;
}

.locale-shot-today {
  aspect-ratio: 940 / 1688;
}

.locale-shot-promise {
  aspect-ratio: 1124 / 1910;
}

.locale-shot {
  transform-origin: top center;
}

html[lang="en"] .locale-shot-chat {
  transform-origin: center center;
  transform: translateY(1.5%) scale(1.07);
}

html[lang="en"] .locale-shot-today {
  transform: scale(1.012);
}

html[lang="en"] .locale-shot-quran {
  transform: scale(0.97);
}

html[lang="tr"] .locale-shot-chat {
  transform-origin: center center;
  transform: translateY(-0.75%) scale(1.015);
}

html[lang="tr"] .locale-shot-quran {
  transform-origin: center center;
  transform: translateY(-0.75%) scale(1.01);
}

.promise-app {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 14px;
}

.promise-app-kicker {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.promise-app-title {
  display: block;
  color: #fff8ed;
  font-size: 1rem;
  line-height: 1.35;
}

.promise-screen-today {
  background:
    radial-gradient(circle at top right, rgba(240, 192, 104, 0.12), transparent 28%),
    linear-gradient(180deg, #111416 0%, #090b0d 100%);
}

.promise-prayer-hero {
  position: relative;
  min-height: 118px;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(8, 10, 11, 0.12), rgba(8, 10, 11, 0.72)),
    url("./assets/alnabawi.png") center / cover;
}

.promise-prayer-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 18, 21, 0.16), rgba(6, 8, 8, 0.82));
}

.promise-prayer-hero-copy {
  position: absolute;
  inset: auto 12px 12px;
  z-index: 1;
}

.promise-prayer-hero-copy span,
.promise-community-live span {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  color: #111;
  background: linear-gradient(135deg, #f6d28d 0%, #f0c068 100%);
}

.promise-prayer-hero-copy strong,
.promise-community-live strong {
  display: block;
  margin-top: 10px;
  color: #fff8ed;
  font-size: 1.1rem;
}

.promise-prayer-hero-copy small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 247, 234, 0.76);
  font-size: 0.74rem;
}

.promise-prayer-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.promise-prayer-chip,
.promise-community-queue div,
.promise-quran-meta span {
  padding: 10px 10px 11px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.promise-prayer-chip.is-active {
  border-color: rgba(240, 192, 104, 0.3);
  background: rgba(240, 192, 104, 0.12);
}

.promise-prayer-chip span,
.promise-prayer-chip b {
  display: block;
}

.promise-prayer-chip span,
.promise-community-queue small,
.promise-community-queue div span,
.promise-quran-meta span,
.promise-quran-card small {
  color: rgba(255, 247, 234, 0.7);
  font-size: 0.7rem;
}

.promise-prayer-chip b {
  margin-top: 4px;
  color: #fff7ea;
  font-size: 0.84rem;
}

.promise-screen-chat {
  background:
    radial-gradient(circle at top left, rgba(125, 183, 146, 0.12), transparent 30%),
    linear-gradient(180deg, #111416 0%, #090b0d 100%);
}

.promise-chat-bubble {
  margin-top: 12px;
  padding: 12px;
  border-radius: 16px;
  font-size: 0.78rem;
  line-height: 1.55;
}

.promise-chat-bubble-user {
  margin-left: 22px;
  color: #14171a;
  background: linear-gradient(135deg, #f6d28d 0%, #f0c068 100%);
}

.promise-chat-bubble-assistant {
  margin-right: 22px;
  color: #fff7ea;
  border: 1px solid rgba(125, 183, 146, 0.2);
  background: rgba(125, 183, 146, 0.12);
}

.promise-reference-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.promise-reference-row span {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(255, 247, 234, 0.82);
  font-size: 0.68rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
}

.promise-screen-community {
  background:
    linear-gradient(180deg, rgba(10, 11, 12, 0.26), rgba(8, 10, 11, 0.92)),
    url("./assets/communitypray.png") center / cover;
}

.promise-community-live {
  margin-top: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(8, 10, 11, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.promise-community-live p {
  margin-top: 8px;
  color: rgba(255, 247, 234, 0.78);
  font-size: 0.78rem;
  line-height: 1.55;
}

.promise-community-queue {
  margin-top: 10px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(8, 10, 11, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.promise-community-queue small {
  display: block;
  margin-bottom: 8px;
}

.promise-community-queue div + div {
  margin-top: 8px;
}

.promise-community-queue div span,
.promise-community-queue div b {
  display: block;
}

.promise-community-queue div b {
  margin-top: 4px;
  color: #fff8ed;
  font-size: 0.76rem;
}

.promise-screen-quran {
  background:
    radial-gradient(circle at top, rgba(240, 192, 104, 0.1), transparent 32%),
    linear-gradient(180deg, #0e1113 0%, #08090a 100%);
}

.promise-quran-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.promise-quran-card {
  margin-top: 10px;
  padding: 16px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.promise-quran-arabic {
  margin: 0;
  color: #fff8ed;
  font-size: 1.18rem;
  line-height: 1.95;
  text-align: right;
  direction: rtl;
}

.promise-quran-card small {
  display: block;
  margin-top: 12px;
}

.promise-quran-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding: 0 2px;
}

.promise-quran-footer span,
.promise-quran-footer b {
  color: rgba(255, 247, 234, 0.82);
  font-size: 0.72rem;
}

.promise-quran-footer b {
  color: var(--accent);
}

.showcase-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.showcase-tabs {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 12px;
}

.showcase-tab {
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--muted);
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.showcase-tab:hover,
.showcase-tab:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.showcase-tab.active {
  color: #111;
  border-color: rgba(240, 192, 104, 0.45);
  background: linear-gradient(135deg, #f6d28d 0%, #f0c068 100%);
}

.showcase-panels {
  position: relative;
}

.showcase-panel {
  display: none;
  padding: 32px;
  border-radius: 28px;
}

.showcase-panel.active {
  display: block;
}

.showcase-panel ul {
  padding-left: 20px;
  margin: 18px 0 0;
}

.showcase-panel li + li {
  margin-top: 10px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 22px 24px;
  border-radius: 22px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.02rem;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 16px 0 0;
}

.closing-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 120px;
  margin-bottom: 54px;
  padding: 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(125, 183, 146, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.closing-shell h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.closing-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 42px;
}

.footer-intro {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1 1 auto;
}

.footer-logo {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  object-fit: contain;
}

.footer-text,
.footer-meta {
  margin: 0;
}

.footer-text {
  min-width: 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.policy-page .site-header {
  justify-content: space-between;
}

.policy-main {
  padding-top: 132px;
}

.policy-hero {
  margin-top: 18px;
}

.policy-title {
  margin: 0;
  max-width: 15ch;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.policy-lead {
  max-width: 64ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

.policy-meta {
  margin: 20px 0 0;
  color: rgba(255, 247, 234, 0.58);
  font-size: 0.94rem;
  font-weight: 700;
}

.policy-stack {
  display: grid;
  gap: 18px;
  margin-top: 44px;
}

.policy-card {
  padding: 28px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(240, 192, 104, 0.06), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.policy-card h2 {
  margin: 0 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: 1.36rem;
  font-weight: 800;
  line-height: 1.2;
}

.policy-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.policy-card a {
  color: var(--accent-soft);
}

.policy-card a:hover,
.policy-card a:focus-visible {
  color: var(--text);
}

.policy-list {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.policy-list li + li {
  margin-top: 10px;
}

.policy-closing {
  margin-top: 64px;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  flex: 0 0 auto;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero h1 {
    max-width: none;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 12px;
  }

  .phone-stack {
    min-height: 860px;
  }

  .trust-strip,
  .story-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-layout {
    grid-template-columns: 1fr;
  }

  .showcase-tabs {
    position: static;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .policy-title {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .lang-switch {
    order: 2;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-stats,
  .feature-grid,
  .promise-grid,
  .showcase-tabs {
    grid-template-columns: 1fr;
  }

  .promise-embed {
    height: auto;
    max-width: 380px;
  }

  .promise-card h3,
  .promise-card p {
    min-height: 0;
  }

  .closing-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .closing-actions {
    flex-wrap: wrap;
  }

  .phone-frame {
    width: min(100%, 420px);
  }

  .phone-stack {
    width: 100%;
    min-height: 1080px;
  }

  .mini-phone-community {
    top: auto;
    right: 0;
    bottom: 220px;
    transform: rotate(5deg);
  }

  .mini-phone-chat {
    left: 0;
    bottom: 32px;
    transform: rotate(-5deg);
  }
}

@media (max-width: 640px) {
  :root {
    --section-width: min(100vw - 24px, 1180px);
  }

  .site-header-shell {
    padding: 10px 12px 0;
  }

  .site-header {
    padding: 12px 0;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .hero-copy {
    padding-top: 8px;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .policy-main {
    padding-top: 118px;
  }

  .policy-card {
    padding: 22px;
  }

  .trust-strip article,
  .feature-card,
  .story-card,
  .showcase-panel,
  .closing-shell {
    padding: 22px;
  }

  .phone-screen {
    padding: 18px;
  }

  .phone-stack {
    min-height: 1180px;
  }

  .mini-phone {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 18px;
    transform: none;
  }

  .today-title,
  .mini-screen h3 {
    font-size: 1.5rem;
  }

  .streak-row-mock,
  .prayer-times-row {
    grid-template-columns: 1fr;
  }

  .footer-links,
  .footer-meta {
    flex-wrap: wrap;
  }
}
