@charset "UTF-8";

:root {
    --ink: #f7f1e6;
    --muted: #a9a092;
    --panel: rgba(28, 27, 24, .9);
    --panel-soft: rgba(255, 255, 255, .045);
    --line: rgba(224, 180, 92, .22);
    --gold: #d9a94e;
    --gold-light: #f4d38a;
    --red: #b94942;
    --blue: #397c95;
    --shadow: 0 24px 70px rgba(0, 0, 0, .38);
}

* { box-sizing: border-box; }
html { min-height: 100%; background: #100f0d; }
body {
    min-height: 100vh;
    margin: 0;
    color: var(--ink);
    font-family: "Segoe UI", "Noto Sans", "Microsoft YaHei", Arial, sans-serif;
    background:
        radial-gradient(circle at 12% 10%, rgba(93, 125, 89, .2), transparent 31rem),
        radial-gradient(circle at 90% 5%, rgba(181, 117, 47, .16), transparent 27rem),
        linear-gradient(135deg, #141713 0%, #0f1110 46%, #17120e 100%);
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .13;
    background-image: linear-gradient(115deg, transparent 0 48%, rgba(255,255,255,.1) 49%, transparent 50%);
    background-size: 13px 13px;
    mix-blend-mode: overlay;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
[v-cloak] { display: none; }

.site-shell { width: min(1240px, 100%); margin: 0 auto; padding: 32px 22px 38px; }
.hero { position: relative; padding: 34px 30px 30px; overflow: hidden; text-align: center; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(135deg, rgba(40, 45, 34, .93), rgba(24, 20, 17, .94)); box-shadow: var(--shadow); }
.hero::before, .hero::after { position: absolute; content: ""; pointer-events: none; border-radius: 50%; filter: blur(1px); }
.hero::before { width: 320px; height: 320px; top: -220px; left: -55px; background: rgba(129, 160, 101, .18); }
.hero::after { width: 260px; height: 260px; right: -100px; bottom: -180px; background: rgba(216, 164, 70, .16); }
.hero__eyebrow { position: relative; letter-spacing: .28em; font-size: 11px; font-weight: 700; color: var(--gold-light); }
.hero h1 { position: relative; margin: 10px 0 4px; font-family: Georgia, "Noto Serif", serif; font-size: clamp(32px, 5vw, 58px); font-weight: 500; letter-spacing: .06em; color: #fff7e8; text-shadow: 0 4px 24px rgba(0,0,0,.4); }
.hero__subtitle { position: relative; margin: 0; color: var(--muted); font-size: 15px; letter-spacing: .12em; }
.hero__ornament { display: flex; align-items: center; justify-content: center; gap: 13px; margin: 19px auto 23px; max-width: 280px; color: var(--gold); }
.hero__ornament span { height: 1px; flex: 1; background: linear-gradient(90deg, transparent, var(--gold)); }
.hero__ornament span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.hero__ornament i { font-size: 13px; font-style: normal; }
.download-bar { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 900px; margin: 0 auto; text-align: left; }
.download-button { display: flex; align-items: center; gap: 11px; min-height: 65px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; background: rgba(255,255,255,.07); transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.download-button:hover, .download-button:focus-visible { transform: translateY(-2px); border-color: var(--gold); background: rgba(255,255,255,.13); }
.download-button__icon { display: grid; width: 33px; height: 33px; flex: 0 0 33px; place-items: center; border-radius: 10px; color: #17130d; font-weight: 800; background: var(--gold); }
.download-button--android .download-button__icon { background: #a9d36e; }
.download-button--ios .download-button__icon { background: #ced6e3; }
.download-button--drive .download-button__icon { background: #e6b55e; }
.download-button small, .download-button strong { display: block; }
.download-button small { margin-bottom: 3px; color: var(--muted); font-size: 10px; letter-spacing: .04em; }
.download-button strong { color: var(--ink); font-size: 13px; }

.tool-panel { margin-top: 20px; }
.identity-card, .feature-card { border: 1px solid var(--line); border-radius: 18px; background: var(--panel); box-shadow: 0 12px 34px rgba(0,0,0,.2); }
.identity-card { padding: 24px 27px 20px; }
.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 16px; }
.feature-card { padding: 23px 24px 21px; }
.feature-card--wide { grid-column: 1 / -1; }
.section-heading { display: flex; align-items: center; gap: 13px; margin-bottom: 21px; }
.section-heading--compact { margin-bottom: 18px; }
.section-heading__number { display: grid; width: 34px; height: 34px; flex: 0 0 34px; place-items: center; border: 1px solid var(--line); border-radius: 10px; color: var(--gold-light); font-family: Georgia, serif; font-size: 13px; }
.section-heading__kicker { margin: 0 0 2px; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .19em; }
.section-heading h2 { margin: 0; color: #fff8ea; font-family: Georgia, "Noto Serif", serif; font-size: 21px; font-weight: 500; }
.identity-grid, .two-columns, .action-row, .mail-grid { display: grid; gap: 13px; }
.identity-grid { grid-template-columns: minmax(180px, .7fr) minmax(0, 1.3fr); }
.two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mail-grid { grid-template-columns: 1.2fr 1.4fr .65fr 1fr; align-items: end; }
.action-row { grid-template-columns: minmax(0, 1fr) auto; align-items: end; }
.action-row--separated { padding-top: 16px; margin-top: 17px; border-top: 1px solid rgba(255,255,255,.08); }
.field { display: block; min-width: 0; }
.field > span:first-child { display: block; margin: 0 0 7px; color: #d0c7b9; font-size: 11px; font-weight: 600; letter-spacing: .04em; }
.field input, .field select { width: 100%; min-height: 42px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.13); border-radius: 9px; outline: none; color: var(--ink); background: rgba(0,0,0,.24); transition: border-color .18s ease, box-shadow .18s ease, background .18s ease; }
.field input::placeholder { color: #777168; }
.field select { appearance: auto; }
.field input:focus, .field select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(217,169,78,.13); background: rgba(0,0,0,.34); }
.field-action { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.helper-text { margin: 12px 0 0; color: #878077; font-size: 11px; line-height: 1.6; }
.helper-text--warning { color: #c8a278; }
.button { min-height: 42px; padding: 9px 16px; border: 1px solid transparent; border-radius: 9px; color: #fff7e8; font-size: 12px; font-weight: 700; letter-spacing: .02em; transition: transform .16s ease, filter .16s ease, background .16s ease; }
.button:hover, .button:focus-visible { transform: translateY(-1px); filter: brightness(1.1); }
.button:active { transform: translateY(0); }
.button--primary { background: linear-gradient(135deg, #35768c, #28566a); }
.button--secondary { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.08); }
.button--gold { color: #261a08; background: linear-gradient(135deg, #f0c86d, #b47d2d); }
.button--danger { background: linear-gradient(135deg, #b9564e, #7b302f); }
.button--danger-soft { border-color: rgba(185,73,66,.45); color: #f0aaa1; background: rgba(125,48,45,.18); }
.button--outline { border-color: rgba(217,169,78,.45); color: var(--gold-light); background: transparent; }
.button--full { width: 100%; margin-top: 13px; }
.button-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 15px; }
.button-grid--two { margin-top: 18px; }
.site-footer { display: flex; flex-wrap: wrap; align-items: baseline; gap: 11px 18px; padding: 24px 8px 2px; color: #837a6e; font-size: 11px; }
.site-footer strong { color: var(--gold); letter-spacing: .12em; font-size: 10px; }
.site-footer small { width: 100%; color: #665f56; }

@media (max-width: 900px) {
    .mail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
    .site-shell { padding: 12px 10px 25px; }
    .hero { padding: 27px 14px 18px; border-radius: 18px; }
    .hero h1 { font-size: 34px; }
    .hero__subtitle { font-size: 13px; }
    .download-bar { grid-template-columns: 1fr; max-width: 430px; }
    .download-button { min-height: 55px; }
    .identity-card, .feature-card { padding: 18px 15px; border-radius: 14px; }
    .identity-grid, .two-columns, .mail-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; gap: 12px; }
    .feature-card--wide { grid-column: auto; }
    .field-action { grid-template-columns: 1fr; }
    .action-row { grid-template-columns: 1fr; }
    .action-row .button { width: 100%; }
    .button-grid { gap: 7px; }
    .button { padding-left: 10px; padding-right: 10px; font-size: 11px; }
}
