/* ==========================================================================
   SMSCove — public SMS pages
   Two scopes, so the rest of the site is never touched:
     body.sim-shell   — design tokens + shared chrome (nav, footer, page bg).
                        Used by the landing page AND the country pages.
     body.sim-landing — the landing page itself. Its element resets would
                        outrank simulation.css component rules, so they must
                        not leak onto the country pages.
   ========================================================================== */

body.sim-shell {
    /* ink — the dark panels (hero, CTA, footer) */
    --lp-ink: #08201e;
    --lp-ink-2: #0c2b28;

    /* paper — the light body of the page */
    --lp-paper: #fbfaf7;
    --lp-paper-2: #f3f1eb;
    --lp-surface: #ffffff;

    /* hairlines */
    --lp-line: #e4e1d8;
    --lp-line-2: #eeece5;
    --lp-line-ink: rgba(255, 255, 255, 0.1);

    /* text on paper */
    --lp-fg: #101f1d;
    --lp-fg-2: #4e5f5c;
    --lp-fg-3: #8a9a96;

    /* text on ink */
    --lp-on-ink: #f2f7f5;
    --lp-on-ink-2: #9fb6b1;
    --lp-on-ink-3: #6b8480;

    /* brand teal, taken off the logo gradient */
    --lp-teal: #12b39f;        /* fills on dark */
    --lp-teal-light: #4fd8c6;  /* text on dark */
    --lp-teal-deep: #07665b;   /* text / fills on paper */
    --lp-teal-tint: #e8f7f4;

    --lp-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Consolas, monospace;
    --lp-ease: cubic-bezier(0.22, 0.61, 0.36, 1);

    background: var(--lp-paper);
    color: var(--lp-fg);
    font-family: 'Figtree', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Landing-page-only reset. index.css paints every <p>/<small> grey and
   Bootstrap adds heading margins; both need neutralising here, but neither
   may be neutralised on the country pages, where simulation.css owns them. */
body.sim-landing p,
body.sim-landing small,
body.sim-landing h1,
body.sim-landing h2,
body.sim-landing h3,
body.sim-landing h4 {
    color: inherit;
    margin: 0;
}

body.sim-landing a {
    color: inherit;
    text-decoration: none;
}

/* Keyboard focus. menu.css and Bootstrap leave links with no visible ring. */
body.sim-shell a:focus-visible,
body.sim-shell button:focus-visible,
body.sim-shell input:focus-visible {
    outline: 2px solid var(--lp-teal);
    outline-offset: 3px;
    border-radius: 4px;
}

body.sim-shell .lp-country:focus-visible,
body.sim-shell .lp-btn:focus-visible,
body.sim-shell .lp-chip:focus-visible {
    outline-offset: 2px;
}

body.sim-landing .lp-country:focus-visible {
    background: var(--lp-teal-tint);
}

body.sim-landing .lp-country:focus-visible::before,
body.sim-landing .lp-country:focus-visible .lp-chev {
    transform: none;
    opacity: 1;
}

body.sim-landing .lp-country:focus-visible::before {
    transform: scaleY(1);
}

/* Shared eyebrow / mono label -------------------------------------------- */
body.sim-landing .lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--lp-mono);
    font-size: 0.688rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* ==========================================================================
   Navigation — overrides menu.css, shared by the landing + country pages
   ========================================================================== */

body.sim-shell .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: transparent;
    box-shadow: none;
    padding: 18px 40px;
    border-bottom: 1px solid transparent;
    transition: background 0.35s var(--lp-ease), border-color 0.35s var(--lp-ease),
        padding 0.35s var(--lp-ease);
}

body.sim-shell .navbar.is-stuck {
    background: rgba(8, 32, 30, 0.82);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    backdrop-filter: saturate(160%) blur(14px);
    border-bottom-color: var(--lp-line-ink);
    padding: 12px 40px;
}

body.sim-shell .nav-logo img {
    height: 40px;
    width: auto;
}

body.sim-shell .nav-link {
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--lp-on-ink-2);
    min-width: 0;
    padding: 8px 0;
    margin: 0 16px;
    width: auto;
    background: none;
    border-bottom: none;
    transition: color 0.2s var(--lp-ease);
}

body.sim-shell .nav-link:hover,
body.sim-shell .nav-link.active {
    color: var(--lp-on-ink);
    background: none;
    border-bottom: none;
}

body.sim-shell .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 22px;
    padding-top: 0;
    margin-top: 0;
    border-top: none;
    width: auto;
}

body.sim-shell .nav-actions .btn-clear,
body.sim-shell .nav-actions .btn-color {
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 8px;
    transition: background 0.2s var(--lp-ease), color 0.2s var(--lp-ease),
        border-color 0.2s var(--lp-ease);
}

body.sim-shell .nav-actions .btn-clear {
    background: transparent;
    border: 1px solid var(--lp-line-ink);
    color: var(--lp-on-ink);
}

body.sim-shell .nav-actions .btn-clear:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.24);
    color: var(--lp-on-ink);
}

body.sim-shell .nav-actions .btn-color {
    background: var(--lp-teal);
    border: 1px solid var(--lp-teal);
    color: var(--lp-ink);
}

body.sim-shell .nav-actions .btn-color:hover {
    background: var(--lp-teal-light);
    border-color: var(--lp-teal-light);
    color: var(--lp-ink);
}

body.sim-shell .hamburger .bar {
    background-color: var(--lp-on-ink);
}

@media (max-width: 991px) {
    body.sim-shell .navbar {
        padding: 14px 20px;
    }
    body.sim-shell .navbar.is-stuck {
        padding: 10px 20px;
    }
    body.sim-shell .nav-menu {
        background: var(--lp-ink);
        border-left: 1px solid var(--lp-line-ink);
        padding-top: 90px;
    }
    body.sim-shell .nav-link {
        margin: 0;
        padding: 14px 24px;
        width: 100%;
        text-align: left;
        font-size: 1rem;
    }
    body.sim-shell .nav-actions {
        margin: 22px 24px 0;
        padding-top: 22px;
        border-top: 1px solid var(--lp-line-ink);
        width: calc(100% - 48px);
    }
    body.sim-shell .nav-actions .btn-clear,
    body.sim-shell .nav-actions .btn-color {
        flex: 1;
        text-align: center;
    }
}

/* ==========================================================================
   Hero
   ========================================================================== */

body.sim-landing .lp-hero {
    position: relative;
    background: var(--lp-ink);
    color: var(--lp-on-ink);
    padding: 148px 40px 0;
    overflow: hidden;
    isolation: isolate;
}

/* one soft light source, low and off-centre — not a blob field */
body.sim-landing .lp-hero::before {
    content: '';
    position: absolute;
    left: -10%;
    bottom: -40%;
    width: 70%;
    height: 110%;
    background: radial-gradient(ellipse at center, rgba(18, 179, 159, 0.16) 0%, transparent 62%);
    pointer-events: none;
    z-index: -1;
}

/* film grain — keeps the flat ink from reading as plastic */
body.sim-landing .lp-hero::after,
body.sim-landing .lp-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.035;
    pointer-events: none;
    z-index: -1;
}

body.sim-landing .lp-hero-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 72px;
    padding-bottom: 76px;
}

body.sim-landing .lp-hero .lp-eyebrow {
    color: var(--lp-teal-light);
    margin-bottom: 26px;
}

body.sim-landing .lp-h1 {
    font-size: clamp(2.6rem, 5.6vw, 4.25rem);
    font-weight: 800;
    line-height: 0.99;
    letter-spacing: -0.035em;
    color: #fff;
    margin-bottom: 22px;
}

body.sim-landing .lp-h1 em {
    display: block;
    font-style: italic;
    font-weight: 700;
    color: var(--lp-teal-light);
    letter-spacing: -0.03em;
}

body.sim-landing .lp-lede {
    font-size: 1.075rem;
    line-height: 1.65;
    color: var(--lp-on-ink-2);
    max-width: 46ch;
    margin-bottom: 34px;
}

body.sim-landing .lp-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

body.sim-landing .lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 10px;
    background: var(--lp-teal);
    color: var(--lp-ink);
    font-size: 0.975rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    border: none;
    cursor: pointer;
    transition: background 0.2s var(--lp-ease), transform 0.2s var(--lp-ease),
        box-shadow 0.25s var(--lp-ease);
}

body.sim-landing .lp-btn:hover {
    background: var(--lp-teal-light);
    color: var(--lp-ink);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -12px rgba(18, 179, 159, 0.75);
}

body.sim-landing .lp-btn:active {
    transform: translateY(0);
}

body.sim-landing .lp-btn i {
    font-size: 0.95em;
    transition: transform 0.25s var(--lp-ease);
}

body.sim-landing .lp-btn:hover i {
    transform: translateY(2px);
}

body.sim-landing .lp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--lp-on-ink);
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    transition: border-color 0.2s var(--lp-ease), color 0.2s var(--lp-ease);
}

body.sim-landing .lp-link:hover {
    color: var(--lp-teal-light);
    border-bottom-color: var(--lp-teal-light);
}

body.sim-landing .lp-link i {
    transition: transform 0.25s var(--lp-ease);
}

body.sim-landing .lp-link:hover i {
    transform: translateX(4px);
}

body.sim-landing .lp-micro {
    font-family: var(--lp-mono);
    font-size: 0.688rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--lp-on-ink-3);
}

body.sim-landing .lp-micro span + span::before {
    content: '·';
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.2);
}

/* ── Live inbox card ── */

body.sim-landing .lp-inbox-wrap {
    position: relative;
    justify-self: end;
    width: 100%;
    max-width: 440px;
}

/* one offset card behind, to hint at a stack of numbers */
body.sim-landing .lp-inbox-wrap::before {
    content: '';
    position: absolute;
    inset: 22px -14px -18px 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
}

body.sim-landing .lp-inbox {
    position: relative;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

body.sim-landing .lp-inbox-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

body.sim-landing .lp-inbox-head img {
    width: 26px;
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
}

body.sim-landing .lp-inbox-num {
    font-family: var(--lp-mono);
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.02em;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.sim-landing .lp-inbox-live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--lp-mono);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    color: var(--lp-teal-light);
    flex-shrink: 0;
}

body.sim-landing .lp-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lp-teal);
    flex-shrink: 0;
    position: relative;
}

body.sim-landing .lp-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--lp-teal);
    animation: lp-ping 2.4s var(--lp-ease) infinite;
}

@keyframes lp-ping {
    0% { transform: scale(1); opacity: 0.55; }
    70%, 100% { transform: scale(2.6); opacity: 0; }
}

body.sim-landing .lp-inbox-list {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 306px;
}

body.sim-landing .lp-msg {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

body.sim-landing .lp-msg.is-new {
    animation: lp-msg-in 0.55s var(--lp-ease) both;
    border-color: rgba(18, 179, 159, 0.42);
    background: rgba(18, 179, 159, 0.07);
}

@keyframes lp-msg-in {
    from { opacity: 0; transform: translateY(-14px) scale(0.985); }
    to { opacity: 1; transform: none; }
}

body.sim-landing .lp-msg.is-out {
    animation: lp-msg-out 0.45s var(--lp-ease) both;
}

@keyframes lp-msg-out {
    to { opacity: 0; transform: translateY(10px); }
}

body.sim-landing .lp-msg-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px;
    object-fit: contain;
    flex-shrink: 0;
}

body.sim-landing .lp-msg-body {
    min-width: 0;
    flex: 1;
}

body.sim-landing .lp-msg-svc {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--lp-on-ink);
    margin-bottom: 3px;
}

body.sim-landing .lp-msg-time {
    font-family: var(--lp-mono);
    font-size: 0.625rem;
    font-weight: 400;
    color: var(--lp-on-ink-3);
    flex-shrink: 0;
}

body.sim-landing .lp-msg-txt {
    font-size: 0.75rem;
    line-height: 1.45;
    color: var(--lp-on-ink-2);
}

body.sim-landing .lp-code {
    font-family: var(--lp-mono);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--lp-teal-light);
    background: rgba(18, 179, 159, 0.14);
    border-radius: 4px;
    padding: 1px 5px;
    letter-spacing: 0.06em;
}

/* ── Stat strip, sitting on the hero's bottom rule ── */

body.sim-landing .lp-stats {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--lp-line-ink);
}

body.sim-landing .lp-stat {
    padding: 30px 8px 34px;
}

body.sim-landing .lp-stat + .lp-stat {
    border-left: 1px solid var(--lp-line-ink);
    padding-left: 32px;
}

body.sim-landing .lp-stat-v {
    font-family: var(--lp-mono);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1;
    margin-bottom: 9px;
}

body.sim-landing .lp-stat-l {
    font-size: 0.813rem;
    color: var(--lp-on-ink-3);
    letter-spacing: 0.01em;
}

/* ==========================================================================
   Sections
   ========================================================================== */

body.sim-landing .lp-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 104px 40px;
}

body.sim-landing .lp-band {
    background: var(--lp-paper-2);
    border-top: 1px solid var(--lp-line);
    border-bottom: 1px solid var(--lp-line);
}

body.sim-landing .lp-section .lp-eyebrow {
    color: var(--lp-teal-deep);
    margin-bottom: 18px;
}

body.sim-landing .lp-title {
    font-size: clamp(1.85rem, 3.4vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.032em;
    line-height: 1.06;
    color: var(--lp-fg);
}

body.sim-landing .lp-sub {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--lp-fg-2);
    margin-top: 14px;
    max-width: 52ch;
}

body.sim-landing .lp-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 44px;
}

body.sim-landing .lp-head-center {
    text-align: center;
    margin-bottom: 56px;
}

body.sim-landing .lp-head-center .lp-sub {
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Countries
   ========================================================================== */

body.sim-landing .lp-search {
    position: relative;
    width: 100%;
    max-width: 300px;
    flex-shrink: 0;
}

body.sim-landing .lp-search i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lp-fg-3);
    font-size: 0.9rem;
    pointer-events: none;
}

body.sim-landing .lp-search input {
    width: 100%;
    padding: 13px 16px 13px 40px;
    border: 1px solid var(--lp-line);
    border-radius: 10px;
    background: var(--lp-surface);
    color: var(--lp-fg);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s var(--lp-ease), box-shadow 0.2s var(--lp-ease);
}

body.sim-landing .lp-search input::placeholder {
    color: var(--lp-fg-3);
}

body.sim-landing .lp-search input:focus {
    border-color: var(--lp-teal-deep);
    box-shadow: 0 0 0 3px rgba(7, 102, 91, 0.1);
}

body.sim-landing .lp-countries {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 56px;
    border-top: 1px solid var(--lp-line);
}

body.sim-landing .lp-country {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px 14px;
    margin: 0 -14px;
    border-bottom: 1px solid var(--lp-line);
    position: relative;
    transition: background 0.2s var(--lp-ease);
}

body.sim-landing .lp-country::before {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    bottom: -1px;
    width: 2px;
    background: var(--lp-teal-deep);
    transform: scaleY(0);
    transition: transform 0.25s var(--lp-ease);
}

body.sim-landing .lp-country:hover {
    background: var(--lp-teal-tint);
}

body.sim-landing .lp-country:hover::before {
    transform: scaleY(1);
}

body.sim-landing .lp-flag {
    width: 30px;
    height: 22px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(16, 31, 29, 0.1);
    flex-shrink: 0;
    transition: transform 0.25s var(--lp-ease);
}

body.sim-landing .lp-country:hover .lp-flag {
    transform: scale(1.08);
}

body.sim-landing .lp-cname {
    flex: 1;
    min-width: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--lp-fg);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.sim-landing .lp-cname span {
    font-family: var(--lp-mono);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--lp-fg-3);
    margin-left: 8px;
}

body.sim-landing .lp-cnum {
    font-family: var(--lp-mono);
    font-size: 0.813rem;
    color: var(--lp-fg-2);
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.2s var(--lp-ease);
}

body.sim-landing .lp-country:hover .lp-cnum {
    color: var(--lp-teal-deep);
}

body.sim-landing .lp-country .lp-dot {
    background: var(--lp-teal-deep);
}

body.sim-landing .lp-country .lp-dot::after {
    background: var(--lp-teal-deep);
}

body.sim-landing .lp-chev {
    font-size: 0.85rem;
    color: var(--lp-fg-3);
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity 0.2s var(--lp-ease), transform 0.2s var(--lp-ease);
    flex-shrink: 0;
}

body.sim-landing .lp-country:hover .lp-chev {
    opacity: 1;
    transform: none;
    color: var(--lp-teal-deep);
}

body.sim-landing .lp-country.is-off .lp-cnum {
    color: var(--lp-fg-3);
    font-style: italic;
}

body.sim-landing .lp-empty {
    padding: 60px 20px;
    text-align: center;
    color: var(--lp-fg-3);
}

body.sim-landing .lp-empty i {
    font-size: 1.6rem;
    display: block;
    margin-bottom: 10px;
}

body.sim-landing .lp-count {
    font-family: var(--lp-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lp-fg-3);
    margin-top: 22px;
}

/* ==========================================================================
   How it works
   ========================================================================== */

body.sim-landing .lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

body.sim-landing .lp-step {
    padding: 0 40px;
}

body.sim-landing .lp-step:first-child {
    padding-left: 0;
}

body.sim-landing .lp-step + .lp-step {
    border-left: 1px solid var(--lp-line);
}

body.sim-landing .lp-step-num {
    font-family: var(--lp-mono);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1;
    color: var(--lp-line);
    letter-spacing: -0.04em;
    margin-bottom: 22px;
    transition: color 0.4s var(--lp-ease);
}

body.sim-landing .lp-step.is-in .lp-step-num {
    color: var(--lp-teal-deep);
}

body.sim-landing .lp-step h3 {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--lp-fg);
    margin-bottom: 10px;
}

body.sim-landing .lp-step p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--lp-fg-2);
}

/* ==========================================================================
   Supported services — marquee
   ========================================================================== */

body.sim-landing .lp-marquee {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

body.sim-landing .lp-marquee + .lp-marquee {
    margin-top: 14px;
}

/* Spacing lives on the chip, not as a flex gap — translateX(-50%) only lands
   seamlessly when every repeated unit is the same width including its gutter. */
body.sim-landing .lp-track {
    display: flex;
    width: max-content;
    animation: lp-scroll 46s linear infinite;
}

body.sim-landing .lp-track-rev {
    animation-direction: reverse;
    animation-duration: 58s;
}

@keyframes lp-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

body.sim-landing .lp-marquee:hover .lp-track {
    animation-play-state: paused;
}

body.sim-landing .lp-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: 14px;
    padding: 11px 20px;
    border: 1px solid var(--lp-line);
    border-radius: 999px;
    background: var(--lp-surface);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--lp-fg-2);
    white-space: nowrap;
    transition: border-color 0.2s var(--lp-ease), color 0.2s var(--lp-ease),
        box-shadow 0.2s var(--lp-ease);
}

body.sim-landing .lp-chip img {
    width: 19px;
    height: 19px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.6;
    transition: filter 0.25s var(--lp-ease), opacity 0.25s var(--lp-ease);
}

body.sim-landing .lp-chip:hover {
    border-color: var(--lp-teal-deep);
    color: var(--lp-fg);
    box-shadow: 0 6px 18px -10px rgba(7, 102, 91, 0.55);
}

body.sim-landing .lp-chip:hover img {
    filter: none;
    opacity: 1;
}

/* ==========================================================================
   Premium CTA
   ========================================================================== */

body.sim-landing .lp-cta {
    position: relative;
    background: var(--lp-ink);
    color: var(--lp-on-ink);
    overflow: hidden;
    isolation: isolate;
    border-top: 2px solid var(--lp-teal);
}

body.sim-landing .lp-cta::before {
    content: '';
    position: absolute;
    right: -8%;
    top: -60%;
    width: 60%;
    height: 180%;
    background: radial-gradient(ellipse at center, rgba(18, 179, 159, 0.15) 0%, transparent 62%);
    pointer-events: none;
    z-index: -1;
}

body.sim-landing .lp-cta .lp-section {
    padding-top: 92px;
    padding-bottom: 92px;
}

body.sim-landing .lp-cta-grid {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 56px;
}

body.sim-landing .lp-cta .lp-eyebrow {
    color: var(--lp-teal-light);
    margin-bottom: 18px;
}

body.sim-landing .lp-cta .lp-title {
    color: #fff;
}

body.sim-landing .lp-cta .lp-sub {
    color: var(--lp-on-ink-2);
}

body.sim-landing .lp-cta-list {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    margin-top: 26px;
    font-family: var(--lp-mono);
    font-size: 0.688rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--lp-on-ink-3);
}

body.sim-landing .lp-cta-list span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.sim-landing .lp-cta-list i {
    color: var(--lp-teal);
    font-size: 0.85rem;
}

/* ==========================================================================
   Notes / policy
   ========================================================================== */

body.sim-landing .lp-notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 56px;
    border-top: 1px solid var(--lp-line);
}

body.sim-landing .lp-note {
    padding: 28px 0;
    border-bottom: 1px solid var(--lp-line);
}

body.sim-landing .lp-note h4 {
    font-family: var(--lp-mono);
    font-size: 0.688rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lp-teal-deep);
    margin-bottom: 12px;
}

body.sim-landing .lp-note p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--lp-fg-2);
}

body.sim-landing .lp-note a {
    color: var(--lp-teal-deep);
    font-weight: 600;
    border-bottom: 1px solid rgba(7, 102, 91, 0.35);
}

body.sim-landing .lp-note a:hover {
    border-bottom-color: var(--lp-teal-deep);
}

/* ==========================================================================
   Footer — overrides index.css, shared by the landing + country pages
   ========================================================================== */

body.sim-shell footer {
    background: var(--lp-ink);
    color: var(--lp-on-ink-2);
    border-top: 1px solid var(--lp-line-ink);
    padding: 56px 40px 40px;
    text-align: left;
}

body.sim-shell footer .dflex-between_ {
    max-width: 1100px;
    margin: 0 auto 32px;
    align-items: center;
}

body.sim-shell footer .logo-img {
    width: 118px;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

body.sim-shell footer .dflex-g {
    gap: 14px;
}

body.sim-shell footer .dflex-g a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--lp-line-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-on-ink-2);
    font-size: 0.95rem;
    transition: background 0.2s var(--lp-ease), color 0.2s var(--lp-ease),
        border-color 0.2s var(--lp-ease);
}

body.sim-shell footer .dflex-g a:hover {
    background: var(--lp-teal);
    border-color: var(--lp-teal);
    color: var(--lp-ink);
}

body.sim-shell footer .footer-links {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 26px;
    border-top: 1px solid var(--lp-line-ink);
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    font-size: 0.875rem;
}

body.sim-shell footer .footer-links a {
    margin: 0 !important;
    color: var(--lp-on-ink-2);
    transition: color 0.2s var(--lp-ease);
}

body.sim-shell footer .footer-links a:hover {
    color: var(--lp-teal-light);
}

body.sim-shell footer .footer-links span {
    display: none;
}

body.sim-shell footer .copy {
    display: block;
    max-width: 1100px;
    margin: 22px auto 0;
    font-family: var(--lp-mono);
    font-size: 0.688rem;
    letter-spacing: 0.06em;
    color: var(--lp-on-ink-3);
}

body.sim-shell footer .copy a {
    color: var(--lp-on-ink-3);
}

body.sim-shell .telegram-float a {
    background-color: var(--lp-teal-deep);
    box-shadow: 0 12px 30px -12px rgba(7, 102, 91, 0.9);
}

body.sim-shell .telegram-float a:hover {
    background-color: var(--lp-teal);
    color: var(--lp-ink);
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

html.lp-js body.sim-landing .lp-reveal {
    opacity: 0;
    transform: translateY(16px);
}

html.lp-js body.sim-landing .lp-reveal.is-in {
    opacity: 1;
    transform: none;
    transition: opacity 0.75s var(--lp-ease), transform 0.75s var(--lp-ease);
    transition-delay: var(--lp-delay, 0ms);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
    body.sim-landing .lp-hero {
        padding: 128px 28px 0;
    }
    body.sim-landing .lp-hero-grid {
        grid-template-columns: 1fr;
        gap: 56px;
        padding-bottom: 60px;
    }
    body.sim-landing .lp-inbox-wrap {
        justify-self: start;
        max-width: 460px;
    }
    body.sim-landing .lp-section {
        padding: 76px 28px;
    }
    body.sim-landing .lp-countries {
        column-gap: 36px;
    }
    body.sim-landing .lp-notes {
        column-gap: 36px;
    }
}

@media (max-width: 860px) {
    body.sim-landing .lp-head {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }
    body.sim-landing .lp-search {
        max-width: none;
    }
    body.sim-landing .lp-countries,
    body.sim-landing .lp-notes {
        grid-template-columns: 1fr;
    }
    body.sim-landing .lp-steps {
        grid-template-columns: 1fr;
        gap: 0;
    }
    body.sim-landing .lp-step {
        padding: 30px 0;
        border-left: none !important;
        border-top: 1px solid var(--lp-line);
    }
    body.sim-landing .lp-step:first-child {
        border-top: none;
        padding-top: 0;
    }
    body.sim-landing .lp-step-num {
        font-size: 2rem;
        margin-bottom: 14px;
    }
    body.sim-landing .lp-cta-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 34px;
    }
    body.sim-landing .lp-stats {
        grid-template-columns: 1fr 1fr;
    }
    body.sim-landing .lp-stat {
        padding: 24px 8px;
        border-top: 1px solid var(--lp-line-ink);
    }
    body.sim-landing .lp-stat:nth-child(-n + 2) {
        border-top: none;
    }
    body.sim-landing .lp-stat:nth-child(odd) {
        border-left: none;
        padding-left: 8px;
    }
    body.sim-landing .lp-stat:nth-child(even) {
        border-left: 1px solid var(--lp-line-ink);
        padding-left: 24px;
    }
}

@media (max-width: 560px) {
    body.sim-landing .lp-hero {
        padding: 108px 20px 0;
    }
    body.sim-landing .lp-section {
        padding: 60px 20px;
    }
    body.sim-landing .lp-lede {
        font-size: 1rem;
    }
    body.sim-landing .lp-actions {
        gap: 18px;
    }
    body.sim-landing .lp-btn {
        width: 100%;
        justify-content: center;
    }
    body.sim-landing .lp-inbox-wrap::before {
        display: none;
    }
    body.sim-landing .lp-stat-v {
        font-size: 1.4rem;
    }
    body.sim-landing .lp-country {
        flex-wrap: wrap;
        row-gap: 4px;
    }
    body.sim-landing .lp-cname {
        flex: 1 1 100%;
        order: 1;
    }
    body.sim-landing .lp-flag {
        order: 0;
    }
    body.sim-landing .lp-cnum {
        order: 2;
        margin-left: 45px;
    }
    body.sim-shell footer,
    body.sim-landing .lp-hero,
    body.sim-landing .lp-cta .lp-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    body.sim-shell footer .dflex-between_ {
        gap: 24px;
    }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    body.sim-shell *,
    body.sim-shell *::before,
    body.sim-shell *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    html.lp-js body.sim-landing .lp-reveal {
        opacity: 1;
        transform: none;
    }
    body.sim-landing .lp-track {
        animation: none;
    }
}
