@font-face {
    font-family: "Vazirmatn";
    src: url("../fonts/Vazirmatn-Regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Vazirmatn";
    src: url("../fonts/Vazirmatn-Medium.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Vazirmatn";
    src: url("../fonts/Vazirmatn-SemiBold.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Vazirmatn";
    src: url("../fonts/Vazirmatn-Bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Estedad";
    src: url("../fonts/Estedad-SemiBold.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Estedad";
    src: url("../fonts/Estedad-Bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Estedad";
    src: url("../fonts/Estedad-ExtraBold.woff2") format("woff2");
    font-style: normal;
    font-weight: 800;
    font-display: swap;
}

:root {
    --color-bg: #f6f8f5;
    --color-surface: #ffffff;
    --color-surface-soft: #eef5f0;
    --color-surface-warm: #fff8eb;
    --color-ink: #14221b;
    --color-muted: #66736c;
    --color-border: #dce5df;
    --color-border-strong: #c9d7ce;
    --color-primary: #176b48;
    --color-primary-dark: #105239;
    --color-primary-soft: #dff2e7;
    --color-warm: #a56213;
    --color-warm-soft: #fff0d2;
    --color-danger: #9b423a;
    --color-danger-soft: #fae8e6;
    --shadow-sm: 0 8px 24px rgba(24, 57, 40, 0.06);
    --shadow-md: 0 18px 48px rgba(24, 57, 40, 0.1);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-xl: 34px;
    --container: 1180px;
    --font-fa: "Vazirmatn", Tahoma, Arial, sans-serif;
    --font-display: "Estedad", "Vazirmatn", Tahoma, Arial, sans-serif;
    --transition: 180ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
    color-scheme: light;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: var(--color-bg);
    color: var(--color-ink);
    font-family: var(--font-fa);
    font-size: 16px;
    line-height: 1.85;
    text-align: right;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
select {
    cursor: pointer;
}

button:disabled,
fieldset:disabled select,
fieldset:disabled input {
    cursor: not-allowed;
}

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

h1,
h2,
h3,
p {
    margin-block-start: 0;
}

h1,
h2,
h3 {
    color: var(--color-ink);
    font-family: var(--font-display);
    line-height: 1.4;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 4.45rem);
    letter-spacing: -0.045em;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.65rem);
    letter-spacing: -0.035em;
}

h3 {
    font-size: 1.08rem;
}

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

::selection {
    background: var(--color-primary-soft);
    color: var(--color-primary-dark);
}

:focus-visible {
    outline: 3px solid rgba(23, 107, 72, 0.35);
    outline-offset: 3px;
}

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

.section-pad {
    padding-block: clamp(64px, 8vw, 110px);
}

.card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
}

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

.skip-link {
    position: fixed;
    z-index: 200;
    inset-block-start: 10px;
    inset-inline-start: 16px;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    background: var(--color-ink);
    color: #fff;
    transform: translateY(-150%);
    transition: transform var(--transition);
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-block-end: 14px;
    color: var(--color-primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.eyebrow-dot,
.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0 0 4px currentColor;
}

.eyebrow-dot {
    box-shadow: 0 0 0 4px var(--color-primary-soft);
}

.eyebrow-warm {
    color: var(--color-warm);
}

.eyebrow-light {
    color: #ccebd9;
}

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-weight: 700;
    line-height: 1.35;
    transition: background-color var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

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

.button-primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 9px 22px rgba(23, 107, 72, 0.18);
}

.button-primary:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 12px 28px rgba(23, 107, 72, 0.24);
}

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

.button-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.button-large {
    min-height: 53px;
    padding-inline: 27px;
}

.button-muted {
    border-color: var(--color-border);
    background: #edf1ee;
    color: #526159;
}

.button-muted:hover {
    background: #e5ebe7;
}

.button-light {
    background: #fff;
    color: var(--color-primary-dark);
    box-shadow: 0 12px 28px rgba(7, 44, 28, 0.2);
}

.button-light:hover {
    background: #eef8f2;
}

.button-block {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--color-primary);
    font-size: 0.94rem;
    font-weight: 700;
}

.text-link span {
    transition: transform var(--transition);
}

.text-link:hover span {
    transform: translateX(-3px);
}

/* Header */
.site-header {
    position: relative;
    z-index: 50;
    border-block-end: 1px solid rgba(216, 228, 220, 0.82);
    background: rgba(246, 248, 245, 0.94);
    backdrop-filter: blur(15px);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
}

.brand-mark {
    width: 48px;
    height: 48px;
    padding: 6px;
    border-radius: 15px;
    background: var(--color-primary);
    color: #fff;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.1;
}

.brand-bell {
    fill: var(--color-warm-soft);
    stroke: var(--color-warm-soft);
}

.brand-copy {
    display: grid;
    line-height: 1.35;
}

.brand-copy strong {
    font-family: var(--font-display);
    font-size: 1.09rem;
}

.brand-copy small {
    color: var(--color-muted);
    font-size: 0.7rem;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(18px, 2.4vw, 34px);
    color: #34453c;
    font-size: 0.92rem;
    font-weight: 600;
}

.site-nav > a:not(.button) {
    position: relative;
    padding-block: 8px;
}

.site-nav > a:not(.button)::after {
    position: absolute;
    content: "";
    inset-inline: 0;
    inset-block-end: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"] {
    color: var(--color-primary);
}

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after {
    transform: scaleX(1);
}

.nav-cta {
    min-height: 43px;
    padding-inline: 21px;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--color-border-strong);
    border-radius: 13px;
    background: var(--color-surface);
}

.menu-toggle span {
    width: 21px;
    height: 2px;
    border-radius: 2px;
    background: var(--color-ink);
    transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
    position: relative;
    padding-block-start: clamp(58px, 8vw, 98px);
    background:
        radial-gradient(circle at 82% 20%, rgba(208, 235, 217, 0.6), transparent 29%),
        radial-gradient(circle at 18% 90%, rgba(255, 236, 198, 0.45), transparent 25%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.82fr);
    align-items: center;
    gap: clamp(55px, 8vw, 118px);
}

.hero-copy h1 {
    margin-block-end: 20px;
}

.hero-copy h1 span {
    color: var(--color-primary);
}

.hero-lead {
    max-width: 650px;
    margin-block-end: 8px;
    color: #435149;
    font-size: clamp(1.03rem, 1.8vw, 1.24rem);
    line-height: 1.9;
}

.hero-note {
    max-width: 610px;
    margin-block-end: 27px;
    font-size: 0.9rem;
}

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

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-block-start: 28px;
    color: var(--color-muted);
    font-size: 0.82rem;
}

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

.hero-facts i {
    width: 19px;
    height: 19px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: var(--color-primary-soft);
    color: var(--color-primary);
    font-style: normal;
    font-size: 0.68rem;
    font-weight: 800;
}

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

.hero-visual::before {
    position: absolute;
    z-index: -3;
    content: "";
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(145deg, #dceee2, #f0f6f1 55%, #fcf7eb);
    box-shadow: inset 0 0 0 1px rgba(23, 107, 72, 0.08);
}

.visual-orbit {
    position: absolute;
    z-index: -2;
    border: 1px dashed rgba(23, 107, 72, 0.2);
    border-radius: 50%;
}

.visual-orbit-one {
    width: 455px;
    height: 455px;
}

.visual-orbit-two {
    width: 335px;
    height: 335px;
}

.phone-shell {
    position: relative;
    width: 278px;
    padding: 9px;
    border: 5px solid #1b2a22;
    border-radius: 42px;
    background: #1b2a22;
    box-shadow: 0 34px 70px rgba(21, 54, 37, 0.24);
    transform: rotate(-2deg);
}

.phone-top {
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 12px;
    border-radius: 26px 26px 0 0;
    background: #fff;
    color: #77837c;
}

.phone-top span {
    width: 55px;
    height: 6px;
    border-radius: 8px;
    background: #dfe6e1;
}

.phone-top small {
    font-size: 0.6rem;
}

.phone-screen {
    min-height: 377px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 30px 20px 24px;
    border-radius: 0 0 29px 29px;
    background: linear-gradient(180deg, #ffffff, #f4f8f5);
    text-align: center;
}

.demo-bell {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    margin-block-end: 17px;
    border-radius: 21px;
    background: var(--color-primary-soft);
    color: var(--color-primary);
}

.demo-bell svg {
    width: 43px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}

.demo-label {
    color: var(--color-muted);
    font-size: 0.72rem;
}

.phone-screen strong {
    margin-block: 9px 0;
    font-size: 1.5rem;
}

.phone-screen p {
    margin: 0;
    font-size: 0.78rem;
}

.phone-screen b {
    margin-block-start: 4px;
    color: var(--color-primary-dark);
    font-size: 1.43rem;
}

.phone-screen b small {
    font-size: 0.68rem;
}

.demo-rule {
    position: relative;
    width: 100%;
    height: 44px;
    margin-block: 20px 14px;
}

.demo-rule::before {
    position: absolute;
    content: "";
    inset-inline: 8px;
    inset-block-start: 22px;
    border-block-start: 2px dashed #cbd9d0;
}

.demo-rule span,
.demo-rule i {
    position: absolute;
    inset-block-start: 14px;
    width: 17px;
    height: 17px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary);
}

.demo-rule span { inset-inline-start: 12px; }
.demo-rule i { inset-inline-end: 12px; background: var(--color-warm); box-shadow: 0 0 0 1px var(--color-warm); }

.demo-disabled {
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--color-warm-soft);
    color: var(--color-warm);
    font-size: 0.66rem;
    font-weight: 700;
}

.floating-chip {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    border: 1px solid rgba(216, 228, 220, 0.95);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
    color: #34453c;
    font-size: 0.72rem;
}

.floating-chip span,
.floating-chip svg {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    padding: 5px;
    border-radius: 9px;
    background: var(--color-primary-soft);
    color: var(--color-primary);
    fill: none;
    stroke: currentColor;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.floating-chip-price {
    inset-inline-start: 3px;
    inset-block-start: 92px;
}

.floating-chip-sms {
    inset-inline-end: -14px;
    inset-block-end: 75px;
}

/* Shared section headings */
.section-heading {
    margin-block-end: 30px;
}

.section-heading h2 {
    margin-block-end: 8px;
}

.section-heading p {
    margin-block-end: 0;
}

.section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.centered {
    max-width: 680px;
    margin-inline: auto;
    text-align: center;
}

.centered.compact {
    max-width: 780px;
}

/* Prices */
.prices-section {
    border-block: 1px solid rgba(220, 229, 223, 0.7);
    background: rgba(255, 255, 255, 0.56);
}

.feed-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-block-end: 18px;
    color: var(--color-muted);
    font-size: 0.77rem;
}

.feed-status .status-dot {
    width: 7px;
    height: 7px;
    color: var(--color-primary);
    box-shadow: 0 0 0 4px var(--color-primary-soft);
}

.feed-status.is-disconnected {
    color: var(--color-danger);
}

.feed-status.is-disconnected .status-dot {
    color: var(--color-danger);
    box-shadow: 0 0 0 4px var(--color-danger-soft);
}

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

.price-card {
    min-width: 0;
    padding: 21px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    box-shadow: 0 6px 20px rgba(24, 57, 40, 0.045);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.price-card:hover {
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.price-card.is-stale {
    border-color: #ecd7b0;
    background: linear-gradient(180deg, #fff, #fffdf8);
}

.price-card.is-unavailable {
    background: #fafcfa;
}

.price-card.is-disconnected {
    border-color: #ead8d6;
}

.price-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.coin-mark {
    width: 43px;
    height: 43px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 14px;
    background: #ebf5ef;
    color: var(--color-primary-dark);
    font-family: Arial, sans-serif;
    font-size: 1.02rem;
    font-weight: 800;
}

.coin-mark--btc { background: #fff0dc; color: #b86706; }
.coin-mark--eth { background: #edf0fa; color: #5566a8; }
.coin-mark--trx { background: #fdeced; color: #b93039; }
.coin-mark--bnb { background: #fff6d9; color: #927300; }
.coin-mark--sol { background: #e8f7f3; color: #177a65; }

.coin-identity {
    min-width: 0;
    display: grid;
    line-height: 1.45;
}

.coin-identity b {
    font-family: Arial, sans-serif;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}

.coin-identity span {
    overflow: hidden;
    color: var(--color-muted);
    font-size: 0.74rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.price-card-chevron {
    margin-inline-start: auto;
    color: #a9b5ae;
    font-size: 0.92rem;
}

.price-line {
    min-width: 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-block: 25px 21px;
    direction: rtl;
}

.price-value {
    min-width: 0;
    color: var(--color-ink);
    font-size: clamp(1.35rem, 2.45vw, 1.95rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.035em;
    unicode-bidi: isolate;
    white-space: nowrap;
}

.price-line.is-unavailable {
    align-items: center;
}

.price-line.is-unavailable .price-value {
    color: var(--color-muted);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0;
    white-space: normal;
}

.price-currency {
    flex: 0 0 auto;
    color: var(--color-muted);
    font-size: 0.72rem;
    font-weight: 600;
}

.price-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-block-start: 14px;
    border-block-start: 1px solid #edf1ee;
}

.freshness {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    color: var(--color-muted);
    font-size: 0.67rem;
    font-weight: 700;
}

.freshness .status-dot {
    width: 6px;
    height: 6px;
    box-shadow: none;
}

.freshness--fresh { color: var(--color-primary); }
.freshness--stale { color: var(--color-warm); }
.freshness--unavailable { color: #7b8780; }
.freshness--disconnected { color: var(--color-danger); }

.price-card time {
    min-width: 0;
    overflow: hidden;
    color: #89948e;
    font-size: 0.64rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.empty-price-state,
.noscript-note {
    padding: 24px;
    border: 1px dashed var(--color-border-strong);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    color: var(--color-muted);
    text-align: center;
}

.empty-price-state {
    grid-column: 1 / -1;
}

.noscript-note {
    margin-block-start: 18px;
    font-size: 0.82rem;
}

/* Alert preview */
.alert-section {
    background: linear-gradient(135deg, #132d20, #174f37 62%, #1d6848);
}

.alert-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.87fr) minmax(430px, 0.75fr);
    align-items: center;
    gap: clamp(48px, 8vw, 110px);
}

.alert-copy h2,
.alert-copy p,
.alert-copy li {
    color: #fff;
}

.alert-copy h2 {
    margin-block-end: 15px;
}

.alert-copy p {
    max-width: 570px;
    color: #cfddd5;
}

.check-list {
    display: grid;
    gap: 11px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
}

.check-list span {
    width: 23px;
    height: 23px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(202, 238, 217, 0.15);
    color: #b8e8ca;
    font-size: 0.72rem;
}

.preview-form {
    position: relative;
    padding: clamp(22px, 3.5vw, 32px);
    box-shadow: 0 30px 70px rgba(3, 26, 15, 0.28);
}

.preview-form fieldset,
.otp-card fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.preview-badge {
    position: absolute;
    inset-block-start: 0;
    inset-inline-end: 25px;
    padding: 7px 13px;
    border-radius: 0 0 11px 11px;
    background: var(--color-warm-soft);
    color: var(--color-warm);
    font-size: 0.67rem;
    font-weight: 700;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
    margin-block: 20px;
}

.field {
    display: grid;
    gap: 7px;
}

.field > span,
.otp-label {
    color: #405148;
    font-size: 0.76rem;
    font-weight: 700;
}

.field-wide {
    grid-column: 1 / -1;
}

.field input,
.field select {
    width: 100%;
    min-height: 48px;
    padding: 10px 13px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: #f8faf8;
    outline: none;
    font-size: 0.88rem;
}

.field select {
    appearance: auto;
}

fieldset:disabled .field input,
fieldset:disabled .field select,
.otp-boxes input:disabled {
    opacity: 1;
    color: #6d7872;
    -webkit-text-fill-color: #6d7872;
}

.form-honesty {
    margin: 12px 0 0;
    color: var(--color-muted);
    font-size: 0.69rem;
    text-align: center;
}

.form-honesty.is-highlighted {
    color: var(--color-primary-dark);
    font-weight: 700;
}

/* Verification and empty state */
.verification-section {
    background: #edf4ef;
}

.verification-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.otp-card,
.alerts-empty {
    min-width: 0;
    padding: clamp(25px, 4vw, 38px);
}

.card-kicker {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-block-end: 17px;
    color: var(--color-primary);
    font-size: 0.76rem;
    font-weight: 700;
}

.icon-tile {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 11px;
    background: var(--color-primary-soft);
    color: var(--color-primary);
    font-family: Arial, sans-serif;
    font-weight: 800;
}

.otp-card h2,
.alerts-empty h2 {
    margin-block-end: 8px;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.otp-card p {
    margin-block-end: 19px;
}

.otp-card .field {
    margin-block-end: 15px;
}

.otp-label {
    margin-block-end: 8px;
}

.otp-boxes {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
}

.otp-boxes input {
    width: 100%;
    min-width: 0;
    height: 48px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: #f8faf8;
    text-align: center;
}

.small-note {
    margin: 15px 0 0 !important;
    color: #7a867f !important;
    font-size: 0.7rem;
}

.alerts-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.empty-illustration {
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    margin-block-end: 16px;
    border-radius: 29px;
    background: #f1f7f3;
    color: var(--color-primary);
}

.empty-illustration svg {
    width: 67px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}

.empty-illustration circle {
    fill: var(--color-warm-soft);
    stroke: var(--color-warm);
}

.alerts-empty p {
    max-width: 410px;
}

.empty-pill {
    padding: 7px 14px;
    border-radius: 999px;
    background: #edf1ee;
    color: #6f7b74;
    font-size: 0.69rem;
    font-weight: 700;
}

/* Steps and principles */
.steps-section {
    background: var(--color-surface);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 43px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: product-step;
}

.step-card {
    position: relative;
    min-width: 0;
    padding: 24px 21px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fbfcfb;
}

.step-card > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin-block-end: 18px;
    border-radius: 12px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
}

.step-card h3 {
    margin-block-end: 7px;
    font-size: 0.98rem;
}

.step-card p {
    margin-block-end: 0;
    font-size: 0.78rem;
    line-height: 1.8;
}

.principles-section {
    padding-block-start: 18px;
    background: var(--color-surface);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 17px;
    margin-block-start: 38px;
}

.principles-grid article {
    min-width: 0;
    padding: 24px;
    border-radius: var(--radius-md);
    background: var(--color-bg);
}

.principles-grid .icon-tile {
    margin-block-end: 17px;
}

.principles-grid h3 {
    margin-block-end: 7px;
    font-size: 0.94rem;
}

.principles-grid p {
    margin: 0;
    font-size: 0.76rem;
}

.final-cta {
    padding-block-start: 25px;
    background: var(--color-surface);
}

.final-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: clamp(32px, 5vw, 58px);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.1), transparent 28%),
        linear-gradient(130deg, #0f4e34, #19714c);
    box-shadow: 0 24px 55px rgba(21, 79, 53, 0.22);
}

.final-cta-card h2 {
    margin-block-end: 8px;
    color: #fff;
}

.final-cta-card p {
    margin: 0;
    color: #d4e6db;
}

/* Inner pages */
.page-hero {
    position: relative;
    padding-block: clamp(65px, 9vw, 105px);
    border-block-end: 1px solid var(--color-border);
    background:
        radial-gradient(circle at 20% 40%, rgba(215, 237, 222, 0.72), transparent 28%),
        linear-gradient(135deg, #f9fbf9, #eef5f0);
    overflow: hidden;
}

.page-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.page-hero h1 {
    max-width: 840px;
    margin-block-end: 13px;
    font-size: clamp(2.15rem, 4.5vw, 3.8rem);
}

.page-hero p {
    max-width: 700px;
    margin: 0;
    font-size: 1.03rem;
}

.page-hero-symbols {
    min-width: 250px;
    display: flex;
    justify-content: center;
    direction: ltr;
}

.page-hero-symbols span {
    width: 83px;
    height: 83px;
    display: grid;
    place-items: center;
    margin-inline-start: -15px;
    border: 1px solid rgba(23, 107, 72, 0.12);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-sm);
    color: var(--color-primary);
    font-family: Arial, sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    transform: rotate(-7deg);
}

.page-hero-symbols span:nth-child(2) {
    z-index: 2;
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-18px) rotate(2deg);
}

.page-hero-symbols span:nth-child(3) {
    transform: rotate(8deg);
}

.prices-page-section {
    background: var(--color-bg);
}

.price-grid-large .price-card {
    padding: 25px;
}

.data-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-block-start: 35px;
    padding: 29px;
}

.data-info-card h2 {
    margin-block-end: 10px;
    font-size: 1.25rem;
}

.data-info-card ul {
    display: grid;
    gap: 6px;
    margin: 0;
    padding-inline-start: 22px;
    color: var(--color-muted);
    font-size: 0.83rem;
}

.legal-section {
    min-height: 50vh;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    align-items: start;
    gap: 28px;
}

.legal-content {
    padding: clamp(27px, 5vw, 54px);
}

.legal-content h2 {
    margin-block: 34px 10px;
    font-size: clamp(1.16rem, 2vw, 1.43rem);
}

.legal-content h2:first-child {
    margin-block-start: 0;
}

.legal-content p {
    margin-block-end: 0;
    color: #536159;
}

.legal-intro {
    padding: 18px 20px;
    border-inline-start: 4px solid var(--color-primary);
    border-radius: 10px;
    background: var(--color-surface-soft);
    color: #35463d !important;
    font-weight: 600;
}

.legal-aside {
    position: sticky;
    inset-block-start: 24px;
    padding: 27px;
}

.legal-aside .icon-tile {
    margin-block-end: 19px;
}

.legal-aside h2 {
    margin-block-end: 8px;
    font-size: 1.2rem;
}

.legal-aside p {
    font-size: 0.82rem;
}

.contact-section {
    min-height: 54vh;
    display: grid;
    align-items: center;
}

.contact-card {
    max-width: 720px;
    padding: clamp(30px, 6vw, 62px);
    text-align: center;
}

.contact-icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    margin: 0 auto 21px;
    border-radius: 25px;
    background: var(--color-primary-soft);
    color: var(--color-primary);
}

.contact-icon svg {
    width: 50px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}

.contact-card h2 {
    margin-block-end: 10px;
}

.contact-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 11px;
    margin-block-start: 27px;
}

.error-section {
    min-height: 65vh;
    display: grid;
    align-items: center;
}

.error-card {
    max-width: 700px;
    padding: clamp(35px, 7vw, 70px);
    text-align: center;
}

.error-code {
    display: block;
    margin-block-end: 5px;
    color: var(--color-primary);
    font-family: Arial, sans-serif;
    font-size: clamp(3rem, 9vw, 6rem);
    font-weight: 900;
    line-height: 1;
}

.error-card h1 {
    margin-block-end: 10px;
    font-size: clamp(1.75rem, 4vw, 2.7rem);
}

.error-card .button {
    margin-block-start: 18px;
}

/* Footer */
.site-footer {
    padding-block-start: 72px;
    border-block-start: 1px solid var(--color-border);
    background: #111d17;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.55fr) 0.65fr 0.75fr;
    gap: clamp(38px, 7vw, 90px);
    padding-block-end: 53px;
}

.brand-footer .brand-mark {
    width: 44px;
    height: 44px;
    background: #1e8058;
}

.brand-footer .brand-copy strong {
    color: #fff;
}

.footer-brand p {
    max-width: 460px;
    margin-block: 18px 10px;
    color: #aebbb4;
    font-size: 0.86rem;
}

.source-note {
    color: #7f9187;
    font-size: 0.71rem;
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 9px;
}

.footer-links h2 {
    margin-block-end: 7px;
    color: #fff;
    font-size: 0.9rem;
}

.footer-links a {
    color: #aebbb4;
    font-size: 0.8rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: #d6f1e1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding-block: 21px;
    border-block-start: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    color: #819087;
    font-size: 0.67rem;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 0.75fr);
        gap: 45px;
    }

    .hero-visual {
        min-height: 450px;
        transform: scale(0.9);
    }

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

    .alert-layout {
        grid-template-columns: minmax(0, 0.8fr) minmax(390px, 1fr);
        gap: 45px;
    }

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

@media (max-width: 800px) {
    .container {
        width: min(100% - 32px, var(--container));
    }

    .header-inner {
        min-height: 72px;
        flex-wrap: wrap;
        gap: 0;
    }

    .brand-mark {
        width: 43px;
        height: 43px;
    }

    .brand-copy small {
        display: none;
    }

    .site-nav {
        width: 100%;
        display: grid;
        gap: 2px;
        padding-block: 9px 16px;
    }

    .site-nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding-inline: 11px;
        border-radius: 10px;
    }

    .site-nav > a:not(.button)::after {
        display: none;
    }

    .site-nav > a:not(.button):hover,
    .site-nav > a[aria-current="page"] {
        background: var(--color-surface-soft);
    }

    .nav-cta {
        margin-block-start: 5px;
        justify-content: center;
    }

    .has-js .menu-toggle {
        display: flex;
    }

    .has-js .site-nav {
        display: none;
    }

    .has-js .site-nav.is-open {
        display: grid;
    }

    .hero-grid,
    .alert-layout,
    .verification-grid,
    .legal-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-copy {
        text-align: center;
    }

    .hero-lead,
    .hero-note {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-facts {
        justify-content: center;
    }

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

    .alert-copy {
        text-align: center;
    }

    .alert-copy p {
        margin-inline: auto;
    }

    .check-list {
        width: max-content;
        max-width: 100%;
        margin-inline: auto;
        text-align: right;
    }

    .page-hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-hero-symbols {
        align-self: center;
    }

    .legal-aside {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 0.7fr 0.8fr;
        gap: 25px;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 15px;
    }

    .container {
        width: min(100% - 24px, var(--container));
    }

    .section-pad {
        padding-block: 58px;
    }

    .hero {
        padding-block-start: 50px;
    }

    .hero-copy h1 br {
        display: none;
    }

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

    .hero-facts {
        gap: 9px 14px;
    }

    .hero-visual {
        min-height: 410px;
        margin-inline: -5px;
        transform: scale(0.84);
    }

    .visual-orbit-one {
        width: 430px;
        height: 430px;
    }

    .floating-chip-price {
        inset-inline-start: 8px;
    }

    .floating-chip-sms {
        inset-inline-end: 2px;
    }

    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .price-grid,
    .steps-grid,
    .principles-grid,
    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .price-card {
        padding: 20px;
    }

    .price-value {
        font-size: clamp(1.45rem, 8.2vw, 2rem);
    }

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

    .field-wide {
        grid-column: auto;
    }

    .otp-card,
    .alerts-empty,
    .preview-form {
        padding: 23px;
    }

    .otp-boxes {
        gap: 5px;
    }

    .otp-boxes input {
        height: 43px;
    }

    .final-cta-card {
        align-items: stretch;
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .page-hero {
        padding-block: 58px;
    }

    .page-hero-symbols {
        min-width: 0;
    }

    .page-hero-symbols span {
        width: 68px;
        height: 68px;
        font-size: 1.35rem;
    }

    .data-info-card {
        flex-direction: column;
        padding: 24px;
    }

    .legal-content,
    .legal-aside {
        padding: 24px;
    }

    .contact-actions {
        display: grid;
    }

    .footer-grid {
        gap: 34px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}

@media (max-width: 390px) {
    .brand-copy strong {
        font-size: 0.98rem;
    }

    .hero-visual {
        margin-inline: -28px;
        transform: scale(0.76);
    }

    .price-card-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .price-card time {
        width: 100%;
    }

    .otp-boxes input {
        height: 40px;
        border-radius: 8px;
    }
}

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

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

/* Phase 5: verified identity, OTP and real alert surfaces */
.price-value,
.numeric,
.otp-boxes,
.otp-countdown,
.nav-identity {
    font-family: "Vazirmatn", Tahoma, sans-serif;
    font-variant-numeric: tabular-nums;
}

.flash-stack {
    position: relative;
    z-index: 40;
    display: grid;
    gap: 8px;
    margin-block: 14px -4px;
}

.flash {
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
}

.flash-success { border-color: #abd8bc; background: var(--color-primary-soft); color: var(--color-primary-dark); }
.flash-error { border-color: #e8bab5; background: var(--color-danger-soft); color: var(--color-danger); }
.flash-warning { border-color: #efd39d; background: var(--color-warm-soft); color: #71430d; }

.nav-identity {
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--color-surface-soft);
    color: var(--color-primary-dark);
    font-size: .79rem;
}

.nav-logout { margin: 0; }
.text-button {
    padding: 4px;
    border: 0;
    background: transparent;
    color: var(--color-primary);
    font: inherit;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer;
}

.real-alert-form input[type="text"],
.real-alert-form select,
.real-alert-form input[type="tel"] {
    width: 100%;
}

.real-alert-form .errorlist,
.form-errors .errorlist {
    margin: 6px 0 0;
    padding: 0;
    color: var(--color-danger);
    font-size: .8rem;
    list-style: none;
}

.form-errors {
    margin-block-end: 16px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    background: var(--color-danger-soft);
}

.consent-field {
    display: grid;
    grid-template-columns: 22px 1fr;
    align-items: start;
    gap: 10px;
    color: var(--color-muted);
    font-size: .84rem;
    line-height: 1.75;
}

.consent-field input {
    width: 20px;
    height: 20px;
    margin-block-start: 3px;
    accent-color: var(--color-primary);
}

.consent-field a { color: var(--color-primary); text-decoration: underline; }
.consent-field .errorlist { grid-column: 2; }

.verified-mobile {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    background: var(--color-primary-soft);
    color: var(--color-primary-dark);
}

.verified-mobile > span {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
}

.security-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-block: 18px;
}

.security-facts span {
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--color-surface-soft);
    color: var(--color-primary-dark);
    font-size: .78rem;
    font-weight: 600;
}

.narrow-form-wrap { max-width: 720px; }
.compact-page-hero { padding-block: 55px; }
.auth-section { min-height: 66vh; display: grid; align-items: center; }
.auth-wrap { max-width: 590px; }
.real-otp-card { padding: clamp(24px, 5vw, 46px); }
.real-otp-card h1 { font-size: clamp(1.8rem, 5vw, 2.7rem); }
.real-otp-card fieldset { margin: 22px 0 8px; padding: 0; border: 0; }
.real-otp-card .otp-boxes input {
    width: min(58px, 14vw);
    height: 62px;
    border: 1px solid var(--color-border-strong);
    border-radius: 12px;
    background: #fff;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    direction: ltr;
}
.real-otp-card .otp-boxes input:focus { border-color: var(--color-primary); }
.otp-countdown { text-align: center; font-size: .9rem; }
.resend-form { margin-block-start: 14px; text-align: center; }
.resend-form button:disabled { color: var(--color-muted); text-decoration: none; }

.alert-list { display: grid; gap: 13px; }
.user-alert {
    display: grid;
    grid-template-columns: minmax(150px, 1.1fr) minmax(105px, .7fr) minmax(180px, 1fr) minmax(150px, .9fr) auto;
    align-items: center;
    gap: 18px;
    padding: 19px 21px;
}
.user-alert-main { display: flex; align-items: center; gap: 11px; }
.user-alert-main > div { display: grid; }
.user-alert-main span, .user-alert small, .delivery-detail { color: var(--color-muted); font-size: .75rem; }
.user-alert > div:not(.user-alert-main) { display: grid; gap: 2px; }
.coin-mini { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: var(--color-primary-soft); color: var(--color-primary); font-weight: 800; }
.state-active { color: var(--color-primary); }
.delivery-detail { max-width: 190px; line-height: 1.5; }
.button-danger { min-height: 40px; padding: 8px 13px; border-color: #e7bdb8; background: var(--color-danger-soft); color: var(--color-danger); }
.cancel-all-form { margin-block-start: 25px; text-align: left; }
.danger-text { color: var(--color-danger); }

@media (max-width: 980px) {
    .user-alert { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .user-alert form { justify-self: start; }
}

@media (max-width: 800px) {
    .nav-identity, .nav-logout { justify-self: stretch; text-align: center; }
}

@media (max-width: 600px) {
    .user-alert { grid-template-columns: minmax(0, 1fr); padding: 18px; }
    .user-alert form, .user-alert .button { width: 100%; }
    .real-otp-card .otp-boxes { gap: 5px; }
    .real-otp-card .otp-boxes input { width: calc((100vw - 92px) / 6); height: 52px; padding: 0; }
}
