:root {
    --background: #f6f1e6;
    --background-soft: #fbf8f1;
    --surface: #fffdf8;
    --surface-strong: #ffffff;
    --ink: #1d1a14;
    --ink-soft: #665f52;
    --gold: #b59650;
    --gold-dark: #80652f;
    --gold-light: #dfcfaa;
    --line: #e7decd;
    --dark: #201d17;
    --dark-soft: #2b271f;
    --white: #fffdf8;
    --shadow-sm: 0 14px 40px rgba(59, 48, 26, 0.08);
    --shadow-lg: 0 32px 80px rgba(59, 48, 26, 0.16);
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--background-soft);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
    font: inherit;
}

::selection {
    color: var(--ink);
    background: var(--gold-light);
}

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 16px;
    color: var(--white);
    background: var(--dark);
    border-radius: 8px;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    background: rgba(251, 248, 241, 0.78);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.scrolled {
    background: rgba(251, 248, 241, 0.93);
    border-color: rgba(128, 101, 47, 0.13);
    box-shadow: 0 12px 34px rgba(59, 48, 26, 0.05);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--ink);
    font-size: 1.14rem;
    font-weight: 760;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.brand img {
    border-radius: 12px;
    box-shadow: 0 5px 14px rgba(91, 72, 34, 0.14);
}

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

.site-nav a {
    position: relative;
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-weight: 650;
    text-decoration: none;
    transition: color 160ms ease;
}

.site-nav a:not(.nav-download)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    height: 1px;
    background: var(--gold-dark);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-download {
    padding: 10px 18px;
    color: var(--white) !important;
    background: var(--dark);
    border-radius: 999px;
    transition: transform 160ms ease, background 160ms ease !important;
}

.nav-download:hover,
.nav-download:focus-visible {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-button > span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
    border-radius: 999px;
    transition: transform 180ms ease;
}

.hero {
    position: relative;
    min-height: 780px;
    padding: 150px 0 90px;
    overflow: hidden;
    background:
        linear-gradient(rgba(128, 101, 47, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(128, 101, 47, 0.045) 1px, transparent 1px),
        var(--background-soft);
    background-size: 42px 42px;
}

.hero::after {
    content: "";
    position: absolute;
    right: -12vw;
    bottom: -34vw;
    width: 58vw;
    aspect-ratio: 1;
    border: 1px solid rgba(181, 150, 80, 0.16);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(181, 150, 80, 0.035), 0 0 0 120px rgba(181, 150, 80, 0.025);
    pointer-events: none;
}

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

.hero-glow-one {
    top: 40px;
    left: -180px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(223, 207, 170, 0.46), rgba(223, 207, 170, 0));
}

.hero-glow-two {
    right: 8%;
    bottom: 2%;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(181, 150, 80, 0.18), rgba(181, 150, 80, 0));
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
    align-items: center;
    gap: clamp(48px, 7vw, 96px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gold-dark);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(181, 150, 80, 0.12);
}

.hero h1,
.section-heading h2,
.formats-copy h2,
.faq-heading h2,
.download-copy h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.hero h1 {
    max-width: 690px;
    margin-top: 26px;
    font-size: clamp(4rem, 6.3vw, 6.7rem);
}

.hero h1 span {
    color: var(--gold-dark);
    font-style: italic;
}

.hero-intro {
    max-width: 610px;
    margin: 30px 0 0;
    color: var(--ink-soft);
    font-size: clamp(1.03rem, 1.5vw, 1.2rem);
    line-height: 1.78;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.94rem;
    font-weight: 760;
    line-height: 1;
    text-decoration: none;
    transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease, border-color 170ms ease;
}

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

.button-primary {
    color: var(--white);
    background: var(--dark);
    box-shadow: 0 14px 30px rgba(32, 29, 23, 0.16);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--gold-dark);
    box-shadow: 0 18px 38px rgba(128, 101, 47, 0.22);
}

.button-secondary {
    color: var(--ink);
    background: rgba(255, 253, 248, 0.76);
    border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: var(--surface-strong);
    border-color: var(--gold-light);
}

.button-light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

.button-light:hover,
.button-light:focus-visible {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
}

.button-full {
    width: 100%;
}

.hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 25px;
    color: var(--ink-soft);
    font-size: 0.82rem;
    font-weight: 640;
}

.hero-notes span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-notes span::before {
    content: "";
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

.hero-visual {
    position: relative;
    min-height: 575px;
    display: grid;
    place-items: center;
}

.visual-orbit {
    position: absolute;
    border: 1px solid rgba(181, 150, 80, 0.2);
    border-radius: 50%;
}

.orbit-one {
    width: 570px;
    height: 570px;
}

.orbit-two {
    width: 450px;
    height: 450px;
    border-style: dashed;
    animation: rotate 40s linear infinite;
}

.app-window {
    position: relative;
    z-index: 2;
    width: min(100%, 610px);
    overflow: hidden;
    background: var(--surface-strong);
    border: 1px solid rgba(128, 101, 47, 0.13);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    transform: rotate(1.1deg);
}

.app-topbar {
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: #fbfaf7;
    border-bottom: 1px solid #eee9df;
}

.app-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.77rem;
    font-weight: 760;
}

.app-brand img {
    border-radius: 9px;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 7px;
    height: 7px;
    background: #d9d3c7;
    border-radius: 50%;
}

.app-body {
    min-height: 410px;
    display: grid;
    grid-template-columns: 122px minmax(0, 1fr);
}

.app-sidebar {
    padding: 20px 14px;
    background: #f8f6f0;
    border-right: 1px solid #eee9df;
}

.sidebar-title {
    margin-bottom: 14px;
    color: #938b7d;
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 4px 0;
    padding: 9px 8px;
    color: #81796b;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 680;
}

.sidebar-item span {
    width: 7px;
    height: 7px;
    border: 1px solid currentColor;
    border-radius: 2px;
}

.sidebar-item.active {
    color: var(--gold-dark);
    background: #eee5d3;
}

.app-canvas {
    padding: 18px;
    background: #eeece7;
}

.video-frame {
    position: relative;
    min-height: 274px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(33, 29, 20, 0.4), rgba(33, 29, 20, 0.08)),
        radial-gradient(circle at 28% 20%, #bc9a54 0, #7f6a42 22%, #353027 62%, #211e19 100%);
    border-radius: 13px;
}

.video-frame::before,
.video-frame::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.video-frame::before {
    width: 300px;
    height: 300px;
    top: -175px;
    right: -20px;
}

.video-frame::after {
    width: 215px;
    height: 215px;
    right: 26px;
    bottom: -145px;
}

.video-light {
    position: absolute;
    top: -40px;
    left: 16%;
    width: 190px;
    height: 190px;
    background: radial-gradient(circle, rgba(246, 229, 185, 0.28), transparent 66%);
}

.verse-card {
    position: relative;
    z-index: 2;
    width: 72%;
    text-align: center;
}

.verse-label {
    display: block;
    margin-bottom: 13px;
    color: rgba(255, 253, 248, 0.68);
    font-size: 0.54rem;
    font-weight: 720;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.verse-card strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.translation-line {
    display: block;
    width: 76%;
    height: 4px;
    margin: 18px auto 0;
    background: rgba(255, 255, 255, 0.38);
    border-radius: 99px;
}

.translation-line.short {
    width: 52%;
    margin-top: 7px;
}

.video-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px 5px 5px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;
    font-size: 0.48rem;
    backdrop-filter: blur(8px);
}

.video-badge img {
    border-radius: 6px;
}

.timeline {
    margin-top: 14px;
    padding: 11px 12px;
    background: var(--surface-strong);
    border-radius: 10px;
}

.timeline-head {
    display: flex;
    justify-content: space-between;
    color: #8a8377;
    font-size: 0.52rem;
    font-weight: 680;
}

.timeline-track {
    position: relative;
    height: 25px;
    margin-top: 8px;
    background: #f1eee8;
    border-radius: 6px;
}

.track-block,
.playhead {
    position: absolute;
    top: 4px;
    height: 17px;
    border-radius: 4px;
}

.track-one {
    left: 3%;
    width: 28%;
    background: #c6a75f;
}

.track-two {
    left: 32%;
    width: 37%;
    background: #d7c492;
}

.track-three {
    left: 70%;
    width: 27%;
    background: #aa8a47;
}

.playhead {
    top: -4px;
    left: 54%;
    width: 1px;
    height: 34px;
    background: #3e372c;
    border-radius: 0;
}

.playhead::before {
    content: "";
    position: absolute;
    top: 0;
    left: -3px;
    width: 7px;
    height: 7px;
    background: #3e372c;
    border-radius: 50%;
}

.audio-wave {
    height: 18px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 7px;
    padding: 0 4px;
}

.audio-wave span {
    flex: 1;
    height: 35%;
    background: #d7d0c3;
    border-radius: 99px;
}

.audio-wave span:nth-child(2n) { height: 70%; }
.audio-wave span:nth-child(3n) { height: 46%; }
.audio-wave span:nth-child(5n) { height: 92%; }

.floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 190px;
    padding: 13px 15px;
    background: rgba(255, 253, 248, 0.92);
    border: 1px solid rgba(128, 101, 47, 0.14);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

.floating-card-one {
    top: 48px;
    left: -42px;
    transform: rotate(-4deg);
}

.floating-card-two {
    right: -42px;
    bottom: 48px;
    transform: rotate(3deg);
}

.floating-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--white);
    background: var(--gold-dark);
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 820;
}

.floating-card strong,
.floating-card small {
    display: block;
    line-height: 1.25;
}

.floating-card strong {
    font-size: 0.72rem;
}

.floating-card small {
    margin-top: 3px;
    color: var(--ink-soft);
    font-size: 0.58rem;
}

.intro-strip {
    position: relative;
    z-index: 3;
    background: var(--gold);
}

.intro-strip-inner {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    text-align: center;
}

.intro-strip p,
.intro-strip strong {
    margin: 0;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.intro-strip p {
    color: rgba(255, 253, 248, 0.84);
}

.intro-strip strong {
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.22rem, 2.3vw, 1.6rem);
    font-style: italic;
    font-weight: 500;
}

.section {
    padding: 120px 0;
}

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

.section-heading h2,
.formats-copy h2,
.faq-heading h2,
.download-copy h2 {
    margin-top: 18px;
    font-size: clamp(2.9rem, 5vw, 5rem);
}

.section-heading > p,
.formats-copy > p,
.faq-heading > p,
.download-copy > p {
    max-width: 640px;
    margin: 24px 0 0;
    color: var(--ink-soft);
    font-size: 1.04rem;
    line-height: 1.78;
}

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

.feature-card {
    position: relative;
    min-height: 320px;
    padding: 30px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 32px rgba(59, 48, 26, 0.035);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-light);
    box-shadow: var(--shadow-sm);
}

.feature-card-large {
    grid-row: span 2;
    min-height: 658px;
    background:
        radial-gradient(circle at 100% 0%, rgba(223, 207, 170, 0.34), transparent 38%),
        var(--surface);
}

.feature-card-wide {
    grid-column: span 2;
    min-height: 320px;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 28px;
}

.feature-number {
    color: var(--gold-dark);
    font-size: 0.68rem;
    font-weight: 820;
    letter-spacing: 0.14em;
}

.feature-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin: 42px 0 28px;
    color: var(--gold-dark);
    background: #f0e7d4;
    border: 1px solid #e5d7b7;
    border-radius: 17px;
}

.feature-card h3,
.step h3,
.value-card h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.72rem;
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.feature-card p,
.step p,
.value-card p {
    margin: 15px 0 0;
    color: var(--ink-soft);
    font-size: 0.94rem;
    line-height: 1.75;
}

.verse-icon {
    align-content: center;
    gap: 5px;
}

.verse-icon span {
    width: 27px;
    height: 3px;
    background: currentColor;
    border-radius: 99px;
}

.verse-icon span:nth-child(2) { width: 19px; }
.verse-icon span:nth-child(3) { width: 23px; }

.sound-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.sound-icon span {
    width: 3px;
    height: 15px;
    background: currentColor;
    border-radius: 99px;
}

.sound-icon span:nth-child(2),
.sound-icon span:nth-child(4) { height: 27px; }
.sound-icon span:nth-child(3) { height: 36px; }

.translation-icon,
.brand-icon {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-style: italic;
}

.image-icon {
    position: relative;
    overflow: hidden;
}

.image-icon::before {
    content: "";
    position: absolute;
    right: 11px;
    bottom: 12px;
    left: 11px;
    height: 19px;
    background: currentColor;
    clip-path: polygon(0 100%, 32% 34%, 50% 64%, 70% 18%, 100% 100%);
    opacity: 0.72;
}

.image-icon span {
    position: absolute;
    top: 13px;
    right: 14px;
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
}

.mini-panel {
    margin-top: 42px;
    padding: 20px;
    background: #f7f1e5;
    border: 1px solid #eadfc8;
    border-radius: 17px;
}

.mini-panel span,
.mini-panel strong {
    display: block;
}

.mini-panel span {
    margin-top: 14px;
    color: #9b8e76;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.mini-panel span:first-child {
    margin-top: 0;
}

.mini-panel strong {
    margin-top: 4px;
    font-size: 0.86rem;
}

.timing-demo {
    position: relative;
    padding: 25px 22px;
    background: #f5f1e9;
    border: 1px solid #eae2d4;
    border-radius: 18px;
}

.timing-row {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
}

.timing-row span {
    color: #8a8274;
    font-size: 0.6rem;
    font-weight: 720;
}

.timing-row::after {
    content: "";
    grid-column: 2;
    grid-row: 1;
    height: 18px;
    background: #e9e3d9;
    border-radius: 6px;
}

.timing-row i {
    position: relative;
    z-index: 1;
    grid-column: 2;
    grid-row: 1;
    width: var(--width);
    height: 18px;
    margin-left: var(--start);
    background: linear-gradient(90deg, var(--gold), #cfb878);
    border-radius: 6px;
}

.timing-marker {
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 66%;
    width: 1px;
    background: var(--ink);
}

.timing-marker::before {
    content: "";
    position: absolute;
    top: 0;
    left: -3px;
    width: 7px;
    height: 7px;
    background: var(--ink);
    border-radius: 50%;
}

.section-dark {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--dark);
}

.section-dark::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -100px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(223, 207, 170, 0.08);
    border-radius: 50%;
    box-shadow: 0 0 0 85px rgba(223, 207, 170, 0.025), 0 0 0 170px rgba(223, 207, 170, 0.02);
}

.section-heading-light {
    position: relative;
    z-index: 1;
}

.section-heading-light .eyebrow {
    color: var(--gold-light);
}

.steps-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step {
    padding: 28px 0 10px;
}

.step-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 34px;
}

.step-number {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--dark);
    background: var(--gold-light);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 850;
}

.step-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(223, 207, 170, 0.45), rgba(223, 207, 170, 0.05));
}

.step h3 {
    color: var(--white);
    font-size: 2.2rem;
}

.step p {
    max-width: 315px;
    color: rgba(255, 253, 248, 0.62);
}

.formats-section {
    overflow: hidden;
    background: var(--surface);
}

.formats-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
    align-items: center;
    gap: clamp(50px, 7vw, 100px);
}

.format-list {
    margin-top: 36px;
    border-top: 1px solid var(--line);
}

.format-list > div {
    display: grid;
    grid-template-columns: 72px 110px 1fr;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.format-list span {
    color: var(--gold-dark);
    font-size: 0.82rem;
    font-weight: 820;
}

.format-list strong {
    font-size: 0.93rem;
}

.format-list small {
    color: var(--ink-soft);
}

.device-stage {
    position: relative;
    min-height: 560px;
    background:
        radial-gradient(circle at 50% 45%, rgba(223, 207, 170, 0.48), rgba(223, 207, 170, 0) 58%),
        linear-gradient(rgba(128, 101, 47, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(128, 101, 47, 0.04) 1px, transparent 1px);
    background-size: auto, 28px 28px, 28px 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.device-stage-vertical {
    display: grid;
    place-items: center;
}

.device.device-vertical.device-vertical-featured {
    position: relative;
    inset: auto;
    width: 244px;
    height: auto;
    aspect-ratio: 9 / 16;
    transform: rotate(2deg);
}

.device.device-vertical.device-vertical-featured .device-screen span {
    font-size: 1.65rem;
}

.format-badge {
    position: absolute;
    right: 9%;
    bottom: 10%;
    min-width: 150px;
    padding: 18px 20px;
    background: rgba(255, 253, 248, 0.94);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.format-badge strong,
.format-badge span {
    display: block;
}

.format-badge strong {
    color: var(--gold-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 1;
}

.format-badge span {
    margin-top: 6px;
    color: var(--ink-soft);
    font-size: 0.75rem;
    font-weight: 700;
}

.device {
    position: absolute;
    padding: 8px;
    background: #29251f;
    border-radius: 19px;
    box-shadow: 0 24px 60px rgba(43, 35, 22, 0.2);
}

.device-screen {
    position: relative;
    height: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--white);
    text-align: center;
    background:
        radial-gradient(circle at 26% 15%, rgba(221, 198, 143, 0.72), transparent 28%),
        linear-gradient(145deg, #8f7542, #332e25 55%, #1f1c17);
    border-radius: 13px;
}

.device-screen::after {
    content: "";
    position: absolute;
    right: -30%;
    bottom: -58%;
    width: 90%;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.device-screen span {
    position: relative;
    z-index: 1;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 500;
    line-height: 1.15;
}

.screen-logo {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px;
    background: rgba(255, 255, 255, 0.86);
    border-radius: 8px;
}

.screen-logo img {
    border-radius: 6px;
}

.device-landscape {
    top: 86px;
    left: 50%;
    width: 410px;
    height: 244px;
    transform: translateX(-50%) rotate(-2deg);
}

.device-landscape .device-screen span {
    font-size: 2rem;
}

.device-vertical {
    right: 42px;
    bottom: 35px;
    width: 156px;
    height: 282px;
    transform: rotate(5deg);
}

.device-vertical .device-screen span {
    font-size: 1.2rem;
}

.device-square {
    bottom: 45px;
    left: 36px;
    width: 205px;
    height: 205px;
    transform: rotate(-5deg);
}

.device-square .device-screen span {
    font-size: 1.35rem;
}

.values-section {
    padding-top: 40px;
    background: var(--surface);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.value-card {
    padding: 56px 42px;
}

.value-card + .value-card {
    border-left: 1px solid var(--line);
}

.value-mark {
    display: block;
    margin-bottom: 24px;
    color: var(--gold-dark);
    font-size: 1.4rem;
}

.value-card h3 {
    font-size: 1.55rem;
}

.faq-section {
    background: var(--background-soft);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: clamp(50px, 8vw, 110px);
}

.faq-heading {
    position: sticky;
    top: 120px;
    align-self: start;
}

.faq-heading h2 {
    font-size: clamp(2.8rem, 4vw, 4.3rem);
}

.faq-heading a {
    color: var(--gold-dark);
    font-weight: 700;
    text-underline-offset: 4px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    list-style: none;
    cursor: pointer;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.28rem;
    font-weight: 500;
}

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

.faq-list summary span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--gold-dark);
    background: #efe6d4;
    border-radius: 50%;
    font-family: ui-sans-serif, sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    transition: transform 180ms ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 620px;
    margin: -4px 0 26px;
    color: var(--ink-soft);
    line-height: 1.75;
}

.download-section {
    padding: 0 0 90px;
    background: var(--background-soft);
}

.download-card {
    position: relative;
    min-height: 390px;
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr) 280px;
    align-items: center;
    gap: 38px;
    padding: 64px;
    overflow: hidden;
    color: var(--white);
    background: var(--dark);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.download-pattern {
    position: absolute;
    top: -190px;
    right: -130px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(223, 207, 170, 0.11);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(223, 207, 170, 0.028), 0 0 0 140px rgba(223, 207, 170, 0.02);
}

.download-logo,
.download-copy,
.download-actions {
    position: relative;
    z-index: 1;
}

.download-logo img {
    padding: 6px;
    background: var(--surface-strong);
    border-radius: 28px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.22);
}

.download-copy .eyebrow {
    color: var(--gold-light);
}

.download-copy h2 {
    max-width: 650px;
    margin-top: 16px;
    font-size: clamp(2.5rem, 4vw, 4.2rem);
}

.download-copy > p {
    color: rgba(255, 253, 248, 0.62);
}

.download-actions {
    display: grid;
    gap: 10px;
}

.site-footer {
    padding: 64px 0 24px;
    color: var(--white);
    background: #171510;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    padding-bottom: 50px;
}

.footer-brand {
    color: var(--white);
}

.footer-main > p {
    margin: 0;
    color: rgba(255, 253, 248, 0.52);
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 253, 248, 0.68);
    font-size: 0.82rem;
    font-weight: 680;
    text-decoration: none;
    transition: color 160ms ease;
}

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

.social-links img {
    filter: invert(1);
    opacity: 0.75;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    color: rgba(255, 253, 248, 0.38);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.75rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 650ms ease, transform 650ms ease;
}

.reveal-delay {
    transition-delay: 120ms;
}

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

@keyframes rotate {
    to { transform: rotate(360deg); }
}

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

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

    .hero-visual {
        width: min(100%, 680px);
        margin-inline: auto;
    }

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

    .feature-card-large {
        grid-row: span 1;
        min-height: 420px;
    }

    .feature-card-wide {
        grid-column: span 2;
    }

    .formats-copy {
        max-width: 740px;
    }

    .device-stage {
        width: min(100%, 690px);
        margin-inline: auto;
    }

    .download-card {
        grid-template-columns: 110px 1fr;
    }

    .download-actions {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-main > p {
        display: none;
    }
}

@media (max-width: 820px) {
    .menu-button {
        display: block;
    }

    .menu-button[aria-expanded="true"] > span:nth-of-type(2) {
        transform: translateY(3.5px) rotate(45deg);
    }

    .menu-button[aria-expanded="true"] > span:nth-of-type(3) {
        transform: translateY(-3.5px) rotate(-45deg);
    }

    .site-nav {
        position: fixed;
        top: 78px;
        right: 0;
        left: 0;
        height: calc(100dvh - 78px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 28px 20px;
        background: rgba(251, 248, 241, 0.98);
        border-top: 1px solid var(--line);
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 220ms ease, visibility 220ms ease;
    }

    .site-nav.open {
        transform: translateX(0);
        visibility: visible;
    }

    .site-nav a {
        width: 100%;
        padding: 17px 2px;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 1.6rem;
        border-bottom: 1px solid var(--line);
    }

    .nav-download {
        width: auto !important;
        margin-top: 28px;
        padding: 14px 22px !important;
        border: 0 !important;
        font-family: ui-sans-serif, sans-serif !important;
        font-size: 0.95rem !important;
    }

    .hero {
        padding-top: 132px;
    }

    .hero h1 {
        font-size: clamp(3.5rem, 13vw, 5.5rem);
    }

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

    .feature-card-wide {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

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

    .step-line {
        display: none;
    }

    .step {
        padding: 8px 0 28px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .step:last-child {
        border-bottom: 0;
    }

    .value-card + .value-card {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

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

    .faq-heading {
        position: static;
    }

    .download-card {
        grid-template-columns: 86px 1fr;
        padding: 48px 38px;
    }

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

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

    .social-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

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

    .section {
        padding: 86px 0;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 74px;
    }

    .hero-grid {
        gap: 54px;
    }

    .hero h1 {
        font-size: clamp(3.1rem, 16vw, 4.5rem);
    }

    .hero-actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .hero-notes {
        display: grid;
    }

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

    .visual-orbit,
    .floating-card {
        display: none;
    }

    .app-window {
        transform: none;
    }

    .app-body {
        grid-template-columns: 82px 1fr;
        min-height: 330px;
    }

    .app-sidebar {
        padding: 14px 8px;
    }

    .sidebar-item {
        gap: 5px;
        padding: 7px 4px;
        font-size: 0.48rem;
    }

    .app-canvas {
        padding: 10px;
    }

    .video-frame {
        min-height: 240px;
    }

    .verse-card strong {
        font-size: 1.25rem;
    }

    .video-badge {
        display: none;
    }

    .intro-strip-inner {
        min-height: 132px;
        align-content: center;
        gap: 2px;
    }

    .intro-strip p,
    .intro-strip strong {
        width: 100%;
    }

    .section-heading h2,
    .formats-copy h2,
    .faq-heading h2 {
        font-size: clamp(2.6rem, 13vw, 3.9rem);
    }

    .feature-card,
    .feature-card-large {
        min-height: auto;
        padding: 25px;
    }

    .feature-icon {
        margin-top: 32px;
    }

    .format-list > div {
        grid-template-columns: 55px 1fr;
    }

    .format-list small {
        grid-column: 2;
    }

    .device-stage {
        min-height: 440px;
    }

    .device-stage-vertical {
        min-height: 500px;
    }

    .device.device-vertical.device-vertical-featured {
        width: 190px;
        height: auto;
        aspect-ratio: 9 / 16;
    }

    .device.device-vertical.device-vertical-featured .device-screen span {
        font-size: 1.25rem;
    }

    .format-badge {
        right: 4%;
        bottom: 6%;
        min-width: 130px;
        padding: 14px 16px;
    }

    .device-landscape {
        top: 62px;
        width: 82%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .device-landscape .device-screen span {
        font-size: 1.4rem;
    }

    .device-vertical {
        right: 8%;
        width: 30%;
        height: auto;
        aspect-ratio: 9 / 16;
    }

    .device-square {
        left: 5%;
        width: 38%;
        height: auto;
        aspect-ratio: 1;
    }

    .device-vertical .device-screen span,
    .device-square .device-screen span {
        font-size: 0.82rem;
    }

    .value-card {
        padding: 42px 24px;
    }

    .faq-list summary {
        min-height: 76px;
        font-size: 1.13rem;
    }

    .download-section {
        padding-bottom: 56px;
    }

    .download-card {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 38px 24px;
        border-radius: 26px;
    }

    .download-logo img {
        width: 82px;
        height: 82px;
        border-radius: 22px;
    }

    .download-copy h2 {
        font-size: clamp(2.4rem, 12vw, 3.5rem);
    }

    .footer-bottom {
        flex-direction: column;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
