:root {
    --bg: #f4efe6;
    --bg-soft: #faf7f2;
    --paper: rgba(255, 251, 245, 0.86);
    --paper-strong: #fffdf9;
    --text: #2d2926;
    --muted: #6f675f;
    --line: rgba(71, 57, 44, 0.14);
    --line-strong: rgba(71, 57, 44, 0.22);
    --accent: #6c4d31;
    --accent-soft: #b18a67;
    --shadow-soft: 0 24px 60px rgba(85, 63, 42, 0.08);
    --shadow-card: 0 14px 32px rgba(85, 63, 42, 0.08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.65;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(221, 204, 183, 0.55), transparent 32%),
        radial-gradient(circle at top right, rgba(244, 234, 220, 0.55), transparent 28%),
        linear-gradient(180deg, #f7f2ea 0%, #f4efe6 45%, #efe8dc 100%);
}

body[lang="zh"] {
    font-family: 'Noto Sans SC', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body[lang="ja"] {
    font-family: 'Noto Sans JP', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body[lang="ko"] {
    font-family: 'Noto Sans KR', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body[lang="ar"] {
    font-family: 'Noto Sans Arabic', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    direction: rtl;
}

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

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

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

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
}

p {
    color: var(--muted);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(247, 242, 234, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(71, 57, 44, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.logo {
    width: 36px;
    height: 36px;
}

.brand-name {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.96rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a.current-link {
    color: var(--text);
}

.language-selector {
    position: relative;
    z-index: 1001;
}

.language-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.65);
    color: var(--text);
    cursor: pointer;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 180px;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-card);
    padding: 8px;
    display: none;
    max-height: 320px;
    overflow-y: auto;
}

.language-dropdown.active {
    display: block;
}

.language-option {
    padding: 10px 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.language-option:hover,
.language-option.selected {
    background: rgba(108, 77, 49, 0.08);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 99px;
}

.section {
    padding: 96px 0;
}

.hero {
    padding: 138px 0 84px;
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
    gap: 56px;
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin-bottom: 22px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.58);
    color: var(--muted);
    font-size: 0.9rem;
}

.hero-title {
    font-size: clamp(3.3rem, 6vw, 5.3rem);
    line-height: 0.95;
    margin-bottom: 22px;
    max-width: 10ch;
}

.hero-title span {
    display: block;
}

.highlight {
    color: var(--accent);
    font-style: italic;
}

.hero-subtitle {
    max-width: 560px;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    background: var(--text);
    color: #fbf8f2;
    box-shadow: 0 12px 24px rgba(45, 41, 38, 0.14);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.6);
    color: var(--text);
    border-color: var(--line);
}

.btn-large {
    min-height: 52px;
    padding: 0 28px;
}

.hero-stage {
    position: relative;
    min-height: 640px;
}

.hero-panel {
    position: relative;
    padding: 26px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.92) 0%, rgba(252, 248, 241, 0.9) 100%);
    border: 1px solid rgba(71, 57, 44, 0.1);
    box-shadow: var(--shadow-soft);
}

.hero-panel::before {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 24px;
    border: 1px dashed rgba(108, 77, 49, 0.12);
    pointer-events: none;
}

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

.alex-hero-background {
    position: absolute;
    inset: auto auto 22px 0;
    width: 180px;
    opacity: 0.1;
    transform: rotate(-8deg);
}

.phone-mockup {
    position: relative;
    z-index: 2;
    width: 300px;
    height: 610px;
    padding: 14px;
    border-radius: 40px;
    background: #1f1c1a;
    box-shadow:
        0 26px 50px rgba(31, 28, 26, 0.26),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(245, 213, 157, 0.18), transparent 30%),
        linear-gradient(180deg, #26211d 0%, #161311 100%);
    padding: 22px 18px;
}

.app-soul-home {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.soul-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.greeting-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.time-greeting {
    color: rgba(255, 244, 231, 0.8);
    font-size: 1rem;
}

.user-greeting {
    color: #fff8ef;
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.alex-avatar-small {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.alex-avatar-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-weather-card {
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 250, 242, 0.12) 0%, rgba(255, 250, 242, 0.06) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 18px;
    text-align: center;
}

.weather-icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.weather-title {
    font-size: 1.3rem;
    line-height: 1.15;
    color: #fff7ec;
    margin-bottom: 8px;
}

.weather-subtitle {
    color: rgba(255, 244, 231, 0.7);
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.btn-checkin-round {
    min-height: 40px;
    padding: 0 16px;
    border-radius: var(--radius-sm);
    border: none;
    background: #f0d8b6;
    color: #211b18;
    font-weight: 600;
    cursor: pointer;
}

.garden-preview {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.garden-label {
    color: rgba(255, 244, 231, 0.76);
    font-size: 0.82rem;
    padding-left: 2px;
}

.garden-history-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.flower-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
}

.history-content {
    flex: 1;
    min-width: 0;
}

.history-title {
    display: block;
    color: #fff7ec;
    font-size: 0.84rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.history-time {
    color: rgba(255, 244, 231, 0.58);
    font-size: 0.72rem;
}

.history-score-metaphor {
    color: rgba(255, 244, 231, 0.7);
}

.hero-note {
    position: absolute;
    right: -18px;
    bottom: 24px;
    z-index: 3;
    width: min(100%, 300px);
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 252, 247, 0.92);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
}

.hero-note h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.hero-note p {
    font-size: 0.92rem;
    margin-bottom: 14px;
}

.hero-note .btn {
    width: 100%;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 36px;
    text-align: center;
}

.section-kicker {
    color: var(--accent);
    font-size: 0.88rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(2.6rem, 4.6vw, 4rem);
    line-height: 1;
    margin-bottom: 12px;
}

.section-slogan,
.section-subtitle {
    font-size: 1.02rem;
}

.features {
    padding-top: 40px;
}

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

.feature-card {
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(108, 77, 49, 0.08);
    font-size: 1.8rem;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.96rem;
}

.alex-avatar-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
}

.download {
    padding-top: 82px;
}

.download-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 22px;
    align-items: stretch;
}

.download-story,
.download-stores {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.download-story {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.95fr);
    gap: 24px;
    padding: 28px;
}

.download-copy h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.download-copy p {
    margin-bottom: 18px;
}

.editorial-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.editorial-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--text);
}

.editorial-list li::before {
    content: '•';
    color: var(--accent);
    font-size: 1.2rem;
    line-height: 1;
}

.download-phone-wrap {
    display: grid;
    place-items: center;
}

.download-phone {
    width: 240px;
    height: 490px;
    padding: 12px;
    border-radius: 34px;
    background: #20201f;
    box-shadow: 0 18px 40px rgba(31, 28, 26, 0.18);
}

.download-phone .screen {
    padding: 12px;
}

.current-app-preview {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.current-app-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.current-app-chip {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    background: rgba(255, 244, 231, 0.12);
    border: 1px solid rgba(255, 244, 231, 0.1);
    color: rgba(255, 244, 231, 0.82);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.current-app-copy {
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 250, 242, 0.14) 0%, rgba(255, 250, 242, 0.06) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.current-app-copy .label {
    display: inline-block;
    margin-bottom: 10px;
    color: rgba(255, 244, 231, 0.7);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.current-app-copy h3 {
    font-size: 1.9rem;
    line-height: 1;
    color: #fff7ec;
    margin-bottom: 10px;
}

.current-app-copy p {
    color: rgba(255, 244, 231, 0.72);
    font-size: 0.92rem;
}

.current-app-stack {
    display: grid;
    gap: 12px;
}

.current-app-card {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.current-app-card-strong {
    background: rgba(240, 216, 182, 0.12);
    border-color: rgba(240, 216, 182, 0.16);
}

.current-app-card strong {
    display: block;
    color: #fff7ec;
    font-size: 0.94rem;
    margin-bottom: 6px;
}

.current-app-card span {
    display: block;
    color: rgba(255, 244, 231, 0.66);
    font-size: 0.82rem;
    line-height: 1.5;
}

.app-note-stack {
    display: grid;
    gap: 10px;
}

.app-note {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(71, 57, 44, 0.08);
}

.app-note strong {
    display: block;
    font-size: 0.92rem;
    color: var(--text);
    margin-bottom: 4px;
}

.app-note span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
}

.download-stores {
    padding: 28px;
    display: grid;
    gap: 16px;
}

.store-card {
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(71, 57, 44, 0.1);
}

.store-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.store-card p {
    margin-bottom: 16px;
}

.app-screenshot-viewer {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
}

.app-screenshot-frame {
    position: relative;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(180deg, #f6f0e8 0%, #eee2d4 100%);
    border: 1px solid rgba(71, 57, 44, 0.08);
}

.app-screenshot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.app-screenshot-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.app-screenshot-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(108, 77, 49, 0.2);
    transition: transform 0.2s ease, background 0.2s ease;
}

.app-screenshot-dot.is-active {
    background: var(--accent);
    transform: scale(1.2);
}

.app-screenshot-proof {
    padding: 14px 16px 4px;
    text-align: left;
}

.app-screenshot-proof-label {
    display: inline-block;
    margin-bottom: 6px;
    color: var(--accent);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.app-screenshot-proof-text {
    margin: 0;
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.6;
}

.store-qr-code {
    width: min(100%, 220px);
    margin: 0 auto 18px;
    border-radius: 20px;
    border: 1px solid rgba(71, 57, 44, 0.1);
    background: #fff;
    padding: 12px;
    box-shadow: 0 14px 24px rgba(85, 63, 42, 0.08);
}

.hardware {
    padding-top: 82px;
}

.hardware .section-heading {
    margin-bottom: 28px;
}

.product-stack {
    display: grid;
    gap: 24px;
}

.product-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: center;
    padding: 28px;
    border-radius: var(--radius-xl);
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
}

.product-card.reverse {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.product-card.reverse .product-copy {
    order: 1;
}

.product-card.reverse .product-media {
    order: 2;
}

.product-media {
    position: relative;
}

.product-media::after {
    content: '';
    position: absolute;
    inset: auto 22px 18px auto;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(177, 138, 103, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.product-frame {
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8f2ea 0%, #ebe2d6 100%);
    padding: 22px;
    border: 1px solid rgba(71, 57, 44, 0.08);
}

.ring-image {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 18px 34px rgba(85, 63, 42, 0.12);
}

.product-copy h2 {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    margin-bottom: 10px;
    line-height: 0.98;
}

.hardware-subtitle {
    font-size: 1.02rem;
    margin-bottom: 24px;
}

.hardware-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.hardware-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(71, 57, 44, 0.08);
}

.hardware-feature .feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    margin: 0;
    border-radius: 14px;
    font-size: 1.2rem;
}

.hardware-feature h4 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.hardware-feature p {
    font-size: 0.92rem;
    margin: 0;
}

.hardware-pricing {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 20px;
    margin-bottom: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(71, 57, 44, 0.1);
}

.hardware-price {
    font-size: 3rem;
    line-height: 1;
    font-family: 'Cormorant Garamond', serif;
    color: var(--accent);
}

.hardware-price span {
    color: var(--muted) !important;
}

.hardware-includes {
    color: var(--muted);
    font-size: 0.94rem;
}

.footer {
    padding: 80px 0 28px;
    background: rgba(236, 230, 220, 0.92);
    border-top: 1px solid rgba(71, 57, 44, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    margin-bottom: 34px;
}

.footer-section h4,
.footer-section h5 {
    font-size: 1.45rem;
    margin-bottom: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li + li {
    margin-top: 10px;
}

.footer-section a {
    text-decoration: none;
    color: var(--muted);
}

.footer-section a:hover {
    color: var(--text);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(71, 57, 44, 0.08);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(71, 57, 44, 0.14);
    background: rgba(255, 255, 255, 0.68);
    color: var(--text);
}

.newsletter-form button {
    min-height: 46px;
    border: none;
    border-radius: 14px;
    background: var(--text);
    color: #fbf8f2;
    cursor: pointer;
}

.newsletter-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.newsletter-feedback {
    display: none;
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-size: 0.92rem;
    line-height: 1.5;
}

.newsletter-feedback.is-visible {
    display: block;
}

.newsletter-feedback.is-success {
    background: rgba(108, 77, 49, 0.08);
    border-color: rgba(108, 77, 49, 0.16);
    color: var(--text);
}

.newsletter-feedback.is-error {
    background: rgba(152, 65, 54, 0.08);
    border-color: rgba(152, 65, 54, 0.18);
    color: #7a2e26;
}

.footer-bottom {
    padding-top: 18px;
    border-top: 1px solid rgba(71, 57, 44, 0.08);
    text-align: center;
    color: var(--muted);
    font-size: 0.92rem;
}

.content-page {
    padding: 132px 0 88px;
}

.content-page .container {
    max-width: 960px;
}

.page-shell {
    display: grid;
    gap: 24px;
}

.page-intro {
    padding: 28px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.94) 0%, rgba(249, 243, 235, 0.9) 100%);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
}

.page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin-bottom: 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.58);
    color: var(--accent);
    font-size: 0.86rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 18px;
    font-weight: 500;
}

.back-link:hover {
    color: var(--text);
}

.page-title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 0.98;
    margin-bottom: 10px;
}

.page-summary {
    max-width: 680px;
    font-size: 1rem;
}

.page-surface {
    padding: 30px;
    border-radius: var(--radius-xl);
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
}

.legal-prose > *:first-child {
    margin-top: 0;
}

.legal-prose h2 {
    font-size: 2rem;
    line-height: 1.05;
    margin: 28px 0 12px;
}

.legal-prose h3 {
    font-size: 1.45rem;
    line-height: 1.15;
    margin: 20px 0 10px;
}

.legal-prose p,
.legal-prose li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted);
}

.legal-prose p + p {
    margin-top: 10px;
}

.legal-prose ul,
.legal-prose ol {
    margin: 14px 0 18px;
    padding-left: 1.3rem;
}

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

.legal-prose a {
    color: var(--accent);
    text-decoration: none;
}

.legal-prose a:hover {
    text-decoration: underline;
}

.mission-card,
.contact-card {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 251, 245, 0.92) 0%, rgba(245, 235, 222, 0.88) 100%);
    border: 1px solid rgba(71, 57, 44, 0.1);
    box-shadow: 0 12px 28px rgba(85, 63, 42, 0.06);
}

.mission-card {
    text-align: center;
}

.mission-card h2,
.contact-card h2 {
    margin-top: 0;
}

.contact-card + .contact-card {
    margin-top: 16px;
}

.contact-card .icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 18px;
    background: rgba(108, 77, 49, 0.08);
    font-size: 1.8rem;
}

.legal-alert {
    padding: 18px 20px;
    margin-bottom: 22px;
    border-radius: 20px;
    background: rgba(108, 77, 49, 0.08);
    border: 1px solid rgba(108, 77, 49, 0.2);
    color: var(--text);
}

.legal-alert strong {
    color: var(--text);
}

.faq-item {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(71, 57, 44, 0.08);
}

.faq-item + .faq-item {
    margin-top: 14px;
}

.faq-item h3 {
    margin-top: 0;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin: 0 8px 8px 0;
    border-radius: var(--radius-sm);
    background: rgba(108, 77, 49, 0.08);
    border: 1px solid rgba(108, 77, 49, 0.12);
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1002;
    background: rgba(37, 29, 24, 0.45);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    width: min(640px, calc(100% - 32px));
    margin: 6vh auto;
    padding: 32px;
    border-radius: 30px;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(37, 29, 24, 0.18);
}

.close {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 1.7rem;
    color: var(--muted);
    cursor: pointer;
}

.modal-content h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-align: center;
}

.modal-content>p {
    text-align: center;
    margin-bottom: 24px;
}

.discord-benefits {
    display: grid;
    gap: 14px;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(71, 57, 44, 0.08);
}

.benefit-icon {
    font-size: 1.35rem;
}

.benefit h4 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.benefit p {
    margin: 0;
}

.modal .btn {
    margin-top: 22px;
    width: 100%;
}

@media (max-width: 1080px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .download-layout,
    .download-story,
    .product-card,
    .product-card.reverse,
    .hero-shell {
        grid-template-columns: 1fr;
    }

    .product-card.reverse .product-copy,
    .product-card.reverse .product-media {
        order: initial;
    }

    .hero-stage {
        min-height: auto;
    }

    .hero-panel {
        max-width: 540px;
        margin: 0 auto;
    }

    .hero-note {
        position: static;
        width: 100%;
        margin-top: 18px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 0;
    }

    .nav {
        width: min(1200px, calc(100% - 24px));
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 12px;
        right: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 18px;
        border-radius: 22px;
        background: rgba(255, 251, 245, 0.96);
        border: 1px solid var(--line);
        box-shadow: var(--shadow-card);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-title,
    .section-title,
    .product-copy h2 {
        max-width: none;
    }

    .features-grid,
    .hardware-features,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .download-phone {
        width: 220px;
        height: 450px;
    }

    .modal-content {
        padding: 26px 20px;
    }

    .content-page {
        padding: 116px 0 72px;
    }

    .page-intro,
    .page-surface {
        padding: 24px;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(1200px, calc(100% - 24px));
    }

    .section {
        padding: 72px 0;
    }

    .hero {
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-subtitle,
    .section-slogan,
    .section-subtitle,
    .hardware-subtitle,
    .download-copy p,
    .store-card p {
        font-size: 0.96rem;
    }

    .btn,
    .btn-large {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }

    .feature-card,
    .download-story,
    .download-stores,
    .product-card,
    .page-intro,
    .page-surface,
    .modal-content {
        padding: 20px;
    }

    .phone-mockup {
        width: 280px;
        height: 570px;
    }

    .download-phone {
        width: 200px;
        height: 410px;
    }
}
