:root {
    color-scheme: light;
    --bg: #f7f2ea;
    --bg-accent: #fffaf4;
    --surface: rgba(255, 255, 255, 0.84);
    --surface-strong: #ffffff;
    --text: #1f1b16;
    --muted: #6b6055;
    --line: rgba(103, 83, 65, 0.14);
    --primary: #7a3e1f;
    --primary-deep: #4f2813;
    --primary-soft: #f0d9c5;
    --shadow: rgba(59, 34, 18, 0.1);
    --focus-ring: rgba(122, 62, 31, 0.22);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(240, 217, 197, 0.9), transparent 40%),
        radial-gradient(circle at bottom left, rgba(201, 168, 132, 0.18), transparent 38%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-accent) 100%);
    line-height: 1.6;
}

a {
    color: var(--primary);
    transition: color 160ms ease;
}

a:hover {
    color: var(--primary-deep);
}

a:focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 3px;
    border-radius: 6px;
}

.skip-to-main {
    position: absolute;
    top: -9999px;
    left: -9999px;
    z-index: 9999;
    padding: 10px 14px;
    background: var(--primary-deep);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
}

.skip-to-main:focus {
    top: 10px;
    left: 10px;
}

.page {
    width: min(1024px, calc(100% - 32px));
    margin: 0 auto;
    padding: 32px 0 64px;
}

.topbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    font-size: 0.94rem;
}

.breadcrumb a {
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--muted);
    font-weight: 400;
}

.toplink {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--line);
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease,
        color 160ms ease;
}

.toplink:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(103, 83, 65, 0.24);
    box-shadow: 0 10px 22px rgba(59, 34, 18, 0.08);
}

.toplink:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px var(--focus-ring);
}

.toplink[aria-current="page"] {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
    border-color: transparent;
    box-shadow: 0 12px 24px rgba(79, 40, 19, 0.16);
}

.hero,
.section-card,
.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px var(--shadow);
}

.hero {
    padding: 32px;
    margin-bottom: 20px;
}

.section-card {
    padding: 28px;
    margin-bottom: 18px;
    margin-top: 18px;
}

.card {
    padding: 24px;
}

.card-emphasis {
    grid-column: 1 / -1;
    background:
        linear-gradient(180deg, rgba(240, 217, 197, 0.28) 0%, rgba(255, 255, 255, 0.82) 100%);
    border-color: rgba(122, 62, 31, 0.16);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    margin: 2px 0 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(122, 62, 31, 0.08);
    border: 1px solid rgba(122, 62, 31, 0.14);
    color: var(--primary-deep);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.platform-badge span {
    display: inline-flex;
    align-items: center;
}

.platform-badge span + span::before {
    content: "|";
    margin: 0 10px;
    color: rgba(79, 40, 19, 0.42);
}

h1,
h2,
h3 {
    font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
    margin: 0 0 12px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.35rem, 6vw, 4.7rem);
    max-width: 10ch;
}

h2 {
    font-size: clamp(1.35rem, 3vw, 1.9rem);
}

h3 {
    font-size: 1.1rem;
}

p {
    margin: 0 0 14px;
}

.lede {
    max-width: 64ch;
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.75;
}

.muted,
.section-card p,
.card p,
.card li,
.meta-item,
.contact,
.footer {
    color: var(--muted);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 20px;
    align-items: stretch;
}

.hero-panel {
    height: 100%;
    padding: 24px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(240, 217, 197, 0.28) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 1px solid rgba(122, 62, 31, 0.14);
}

.meta-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.meta-item,
.contact {
    padding: 16px 18px;
    border-radius: 18px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
}

.meta-item strong,
.contact strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
}

.contact-primary {
    background:
        linear-gradient(180deg, rgba(240, 217, 197, 0.38) 0%, rgba(255, 255, 255, 0.96) 100%);
    border-color: rgba(122, 62, 31, 0.18);
}

.contact-primary a {
    display: inline-block;
    font-size: clamp(1.08rem, 2.4vw, 1.24rem);
    font-weight: 800;
    text-decoration: none;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}


.section-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.section-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    box-shadow: 0 10px 22px rgba(59, 34, 18, 0.06);
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease,
        color 160ms ease;
}

.section-nav a:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(103, 83, 65, 0.24);
    box-shadow: 0 14px 28px rgba(59, 34, 18, 0.1);
}

.section-nav a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px var(--focus-ring);
}

.list {
    margin: 0;
    padding-left: 18px;
    padding-bottom: 10px;
    color: var(--muted);
}

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

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h3 {
    color: var(--text);
    margin-top: 0;
}

.faq-item p {
    color: var(--muted);
}


.step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.step-card {
    position: relative;
    padding-top: 72px;
}

.step-card h3 {
    margin-bottom: 10px;
}

.step-card p:last-child,
.step-card .list:last-child {
    margin-bottom: 0;
}

.step-index {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(240, 217, 197, 0.78) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1px solid rgba(122, 62, 31, 0.16);
    box-shadow: 0 10px 20px rgba(59, 34, 18, 0.08);
    color: var(--primary-deep);
    font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-size: 1.28rem;
    font-weight: 700;
    line-height: 1;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease,
        color 160ms ease;
}

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

.button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px var(--focus-ring);
}

.button-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
    box-shadow: 0 12px 24px rgba(79, 40, 19, 0.18);
}

.button-primary:hover {
    box-shadow: 0 16px 30px rgba(79, 40, 19, 0.24);
}

.button-secondary {
    color: var(--text);
    background: var(--surface-strong);
    border-color: var(--line);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(103, 83, 65, 0.24);
}

.price-value {
    margin: 4px 0 12px;
    font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1;
    color: var(--primary-deep);
}

.legal-date {
    margin: -2px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

/* --- Screenshots --- */
.shots-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 18px;
  align-items: start;
}

.shots-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.shot {
  margin: 0;
  padding: 14px;
  border-radius: 20px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(59, 34, 18, 0.08);
}

.shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(103, 83, 65, 0.16);
}

.shot figcaption {
  margin-top: 10px;
  font-size: 0.95rem;
}

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

.footer {
    margin-top: 26px;
    padding: 18px 6px 0;
    border-top: 1px solid rgba(103, 83, 65, 0.16);
    font-size: 0.94rem;
}

.footer p {
    margin-bottom: 8px;
}

.footer p:last-child {
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 10px;
}

.footer-links a {
    font-weight: 700;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

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

@media (max-width: 640px) {
    .hero,
    .section-card,
    .card {
        border-radius: 20px;
        padding: 22px;
    }

    .button {
        width: 100%;
    }

    .meta-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding-top: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: dark;
        --bg: #1f1b16;
        --bg-accent: #2a2520;
        --surface: rgba(40, 35, 28, 0.8);
        --surface-strong: #332d26;
        --text: #f5f1ed;
        --muted: #a89f96;
        --line: rgba(240, 217, 197, 0.12);
        --primary: #e8a85e;
        --primary-deep: #f5b873;
        --primary-soft: #4f2813;
        --shadow: rgba(255, 255, 255, 0.04);
        --focus-ring: rgba(232, 168, 94, 0.22);
    }

    body {
        background:
            radial-gradient(circle at top right, rgba(80, 40, 20, 0.2), transparent 40%),
            radial-gradient(circle at bottom left, rgba(100, 80, 60, 0.1), transparent 38%),
            linear-gradient(180deg, var(--bg) 0%, var(--bg-accent) 100%);
    }

    a:hover {
        color: var(--primary);
    }

    .toplink {
        background: rgba(51, 45, 38, 0.74);
        color: var(--text);
    }

    .toplink:hover {
        background: rgba(51, 45, 38, 0.94);
        border-color: rgba(240, 217, 197, 0.24);
    }

    .toplink[aria-current="page"] {
        background: linear-gradient(135deg, var(--primary) 0%, #e8a85e 100%);
        color: #1f1b16;
    }

    .button-secondary {
        background: var(--surface);
        color: var(--text);
        border-color: var(--line);
    }

    .button-secondary:hover {
        background: rgba(51, 45, 38, 0.98);
        border-color: rgba(240, 217, 197, 0.24);
    }


.section-nav a {
    background: var(--surface);
    color: var(--text);
    border-color: var(--line);
}

.section-nav a:hover {
    background: rgba(51, 45, 38, 0.98);
    border-color: rgba(240, 217, 197, 0.24);
}

    .hero-panel {
        background:
            linear-gradient(180deg, rgba(80, 50, 30, 0.4) 0%, rgba(51, 45, 38, 0.8) 100%);
        border-color: rgba(232, 168, 94, 0.14);
    }

    .card-emphasis {
        background:
            linear-gradient(180deg, rgba(80, 50, 30, 0.34) 0%, rgba(51, 45, 38, 0.88) 100%);
        border-color: rgba(232, 168, 94, 0.2);
    }

    .contact-primary {
        background:
            linear-gradient(180deg, rgba(80, 50, 30, 0.34) 0%, rgba(51, 45, 38, 0.92) 100%);
        border-color: rgba(232, 168, 94, 0.22);
    }

    .contact-primary a {
        color: var(--primary);
    }

    .contact-primary a:hover {
        color: var(--primary-deep);
    }

.step-index {
    background: linear-gradient(180deg, rgba(80, 50, 30, 0.7) 0%, rgba(51, 45, 38, 0.96) 100%);
    border-color: rgba(232, 168, 94, 0.2);
    color: var(--primary);
}

}

@media print {
    .topbar,
    .breadcrumb,
    .actions,
    .button,
    .footer {
        display: none;
    }

    body {
        background: #ffffff;
        color: #000000;
    }

    .page {
        width: 100%;
        padding: 0;
    }

    .hero,
    .section-card,
    .card {
        background: #ffffff;
        border: 1px solid #000000;
        box-shadow: none;
        page-break-inside: avoid;
    }

    a {
        color: #000000;
        text-decoration: underline;
    }

    h1,
    h2,
    h3 {
        page-break-after: avoid;
    }

    section {
        page-break-inside: avoid;
    }
}
