/* ShopMate page-scoped marketing styles. */

.sm {
    --sm-green: #19a744;
    --sm-green-2: #08752c;
    --sm-lime: #84e658;
    --sm-gold: #f7b316;
    --sm-blue: #2d8cff;
    --sm-ink: #07130d;
    --sm-ink-2: #0d1d14;
    --sm-panel: rgba(255, 255, 255, 0.055);
    --sm-panel-2: rgba(255, 255, 255, 0.085);
    --sm-line: rgba(255, 255, 255, 0.12);
    --sm-muted: #b8c3bd;
    --sm-soft: rgba(25, 167, 68, 0.14);
    --sm-shadow: 0 22px 50px rgba(0, 0, 0, 0.42);
}

.sm .site-footer {
    margin-top: 0;
}

.sm-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--sm-line);
    background:
        linear-gradient(145deg, rgba(132, 230, 88, 0.14) 0%, transparent 24%),
        linear-gradient(220deg, rgba(45, 140, 255, 0.12) 0%, transparent 28%),
        linear-gradient(180deg, #06130c 0%, #0b1d13 58%, #07130d 100%);
}

.sm-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 0 46%, rgba(255, 255, 255, 0.045) 46% 47%, transparent 47% 100%),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 44px);
    opacity: 0.5;
    pointer-events: none;
}

.sm-hero-inner {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 34px 24px 38px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.sm-hero-copy {
    min-width: 0;
}

.sm-brand-banner {
    display: block;
    width: min(100%, 430px);
    height: auto;
    margin: 0 0 18px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
}

.sm-eyebrow,
.sm-kicker {
    margin: 0 0 10px;
    color: var(--sm-lime);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.sm-hero h1 {
    margin: 0 0 8px;
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.sm-wordmark {
    background: linear-gradient(90deg, #ffffff, var(--sm-lime));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--sm-lime);
}

.sm-tagline {
    margin: 0 0 16px;
    color: #f2fff4;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    line-height: 1.08;
}

.sm-tagline span {
    color: var(--sm-lime);
}

.sm-lead {
    max-width: 560px;
    margin: 0 0 18px;
    color: var(--sm-muted);
    font-size: 1.04rem;
}

.sm-availability {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    align-items: center;
    margin: 0 0 18px;
    color: #e9fff0;
    font-weight: 800;
    font-size: 0.92rem;
}

.sm-availability span,
.sm-availability a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sm-availability span::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--sm-gold);
    box-shadow: 0 0 16px rgba(247, 179, 22, 0.8);
}

.sm-availability a {
    color: var(--sm-gold);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.sm-store-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: stretch;
    margin: 0 0 18px;
}

.sm-store {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-height: 54px;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid var(--sm-line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
    color: var(--fg);
    font-weight: 800;
    transition: transform 0.12s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.sm-store svg {
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
}

.sm-store:hover {
    color: var(--fg);
    text-decoration: none;
    transform: translateY(-2px);
    border-color: rgba(132, 230, 88, 0.52);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
}

.sm-store.is-soon {
    cursor: not-allowed;
    opacity: 0.62;
}

.sm-store.is-soon:hover {
    transform: none;
    border-color: var(--sm-line);
    box-shadow: none;
}

.sm-store.is-apple small,
.sm-store.is-notify small,
.sm-store.is-google small,
.sm-store.is-soon small {
    color: var(--sm-gold);
}

.sm-store-text {
    display: flex;
    flex-direction: column;
    line-height: 1.12;
    text-align: left;
}

.sm-store-text small {
    color: var(--sm-muted);
    font-size: 0.64rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.sm-store-text strong {
    font-size: 0.95rem;
}

.sm-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
}

.sm-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    border: 1px solid var(--sm-line);
    border-radius: 999px;
    background: var(--sm-panel);
    color: var(--fg);
    font-size: 0.8rem;
    font-weight: 700;
}

.sm-chip::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--_dot, var(--sm-green));
    box-shadow: 0 0 12px var(--_dot, var(--sm-green));
}

.sm-chip.is-blue { --_dot: var(--sm-blue); }
.sm-chip.is-gold { --_dot: var(--sm-gold); }
.sm-chip.is-lime { --_dot: var(--sm-lime); }

.sm-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 590px;
}

.sm-proof span {
    min-height: 50px;
    padding: 10px 12px;
    border: 1px solid var(--sm-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--sm-muted);
    display: flex;
    align-items: center;
    font-size: 0.82rem;
    line-height: 1.3;
}

.sm-hero-media {
    min-width: 0;
}

.sm-device-showcase {
    position: relative;
    min-height: 520px;
    max-width: 530px;
    margin: 0 auto;
}

.sm-shot {
    position: absolute;
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    line-height: 0;
    cursor: zoom-in;
    border-radius: 8px;
    filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.48));
    transition: transform 0.16s ease, filter 0.16s ease;
}

.sm-shot img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: #f7fbf7;
}

.sm-shot:hover,
.sm-shot:focus-visible {
    filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.6));
}

.sm-shot:focus-visible,
.sm-shot-card:focus-visible,
.sm-banner-btn:focus-visible {
    outline: 2px solid var(--sm-lime);
    outline-offset: 4px;
}

.sm-shot-main {
    z-index: 4;
    width: 230px;
    left: 50%;
    top: 0;
    transform: translateX(-50%) rotate(-1deg);
}

.sm-shot-main:hover,
.sm-shot-main:focus-visible {
    transform: translateX(-50%) translateY(-4px) rotate(-1deg);
}

.sm-shot-map {
    z-index: 2;
    width: 178px;
    left: 6px;
    top: 94px;
    transform: rotate(5deg);
}

.sm-shot-map:hover,
.sm-shot-map:focus-visible {
    transform: translateY(-4px) rotate(5deg);
}

.sm-shot-widget {
    z-index: 3;
    width: 176px;
    right: 8px;
    top: 118px;
    transform: rotate(-6deg);
}

.sm-shot-widget:hover,
.sm-shot-widget:focus-visible {
    transform: translateY(-4px) rotate(-6deg);
}

.sm-showcase-caption {
    position: absolute;
    left: 50%;
    bottom: 10px;
    z-index: 5;
    transform: translateX(-50%);
    width: min(90%, 430px);
    padding: 12px 16px;
    border: 1px solid var(--sm-line);
    border-radius: 8px;
    background: rgba(6, 19, 12, 0.86);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    text-align: center;
    box-shadow: var(--sm-shadow);
}

.sm-showcase-caption span {
    display: block;
    color: var(--sm-gold);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.sm-showcase-caption strong {
    display: block;
    color: var(--fg);
    font-size: 0.94rem;
}

.sm-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 56px 24px;
}

.sm-section-tight {
    padding-top: 32px;
}

.sm-band {
    border-top: 1px solid var(--sm-line);
    border-bottom: 1px solid var(--sm-line);
    background:
        linear-gradient(135deg, rgba(25, 167, 68, 0.1), transparent 32%),
        linear-gradient(180deg, #0a1710, #0d1d14);
}

.sm-screens {
    border-top: 1px solid var(--sm-line);
    border-bottom: 1px solid var(--sm-line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
        #07130d;
}

.sm-head {
    max-width: 720px;
    margin: 0 auto 34px;
    text-align: center;
}

.sm-head h2 {
    margin: 0 0 12px;
    font-size: clamp(1.65rem, 3vw, 2.18rem);
    line-height: 1.12;
    letter-spacing: 0;
}

.sm-head p {
    margin: 0;
    color: var(--sm-muted);
    font-size: 1.02rem;
}

.sm-shot-rail {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 4px 18px;
    scroll-snap-type: x proximity;
    scrollbar-color: rgba(132, 230, 88, 0.6) rgba(255, 255, 255, 0.08);
}

.sm-shot-card {
    flex: 0 0 150px;
    display: grid;
    gap: 10px;
    padding: 8px;
    border: 1px solid var(--sm-line);
    border-radius: 8px;
    background: var(--sm-panel);
    color: var(--fg);
    cursor: zoom-in;
    text-align: left;
    scroll-snap-align: start;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
    transition: transform 0.12s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.sm-shot-card:hover,
.sm-shot-card:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(132, 230, 88, 0.46);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
}

.sm-shot-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: #f7fbf7;
}

.sm-shot-card span {
    display: block;
    min-height: 2.3em;
    color: var(--sm-muted);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.2;
}

.sm-feature {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 46px;
    align-items: center;
    padding: 34px 0;
}

.sm-feature + .sm-feature {
    border-top: 1px solid var(--sm-line);
}

.sm-feature.is-rev .sm-feature-media {
    order: 2;
}

.sm-feature-media {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

.sm-feature-shot {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    line-height: 0;
    cursor: zoom-in;
    border-radius: 8px;
}

.sm-feature-shot img {
    display: block;
    width: min(100%, 285px);
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--sm-line);
    box-shadow: var(--sm-shadow);
}

.sm-duo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
}

.sm-duo .sm-feature-shot:first-child {
    margin-top: 42px;
}

.sm-duo .sm-feature-shot img {
    width: min(38vw, 190px);
}

.sm-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--sm-soft);
    color: var(--_tag, var(--sm-lime));
    font-size: 0.73rem;
    font-weight: 900;
    text-transform: uppercase;
}

.sm-feature-tag svg {
    width: 16px;
    height: 16px;
}

.sm-tag-blue { --_tag: #9dccff; background: rgba(45, 140, 255, 0.16); }
.sm-tag-gold { --_tag: var(--sm-gold); background: rgba(247, 179, 22, 0.16); }
.sm-tag-lime { --_tag: var(--sm-lime); background: rgba(132, 230, 88, 0.14); }

.sm-feature h3 {
    margin: 0 0 12px;
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    line-height: 1.14;
    letter-spacing: 0;
}

.sm-sub {
    max-width: 540px;
    margin: 0 0 18px;
    color: var(--sm-muted);
}

.sm-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.sm-list li {
    position: relative;
    padding-left: 30px;
    color: var(--fg);
}

.sm-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.25em;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--_check, var(--sm-green));
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / 13px no-repeat;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / 13px no-repeat;
}

.sm-feature.is-blue .sm-list li { --_check: var(--sm-blue); }
.sm-feature.is-gold .sm-list li { --_check: var(--sm-gold); }
.sm-feature.is-lime .sm-list li { --_check: var(--sm-lime); }

.sm-list small {
    display: block;
    color: var(--sm-muted);
    font-size: 0.88rem;
}

.sm-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.sm-card {
    min-height: 164px;
    padding: 20px 18px;
    border: 1px solid var(--sm-line);
    border-radius: 8px;
    background: var(--sm-panel);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.sm-card-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin: 0 0 14px;
    border-radius: 8px;
    background: var(--sm-soft);
    color: var(--sm-lime);
}

.sm-card-icon svg {
    width: 23px;
    height: 23px;
}

.sm-card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    line-height: 1.22;
}

.sm-card p {
    margin: 0;
    color: var(--sm-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.sm-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.sm-step {
    padding: 18px 16px;
    border: 1px solid var(--sm-line);
    border-radius: 8px;
    background: var(--sm-panel);
}

.sm-step-n {
    width: 32px;
    height: 32px;
    margin: 0 0 12px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--sm-lime), var(--sm-blue));
    color: #04130a;
    font-weight: 900;
}

.sm-step h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.sm-step p {
    margin: 0;
    color: var(--sm-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.sm-twocol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.sm-note {
    padding: 20px 22px;
    border: 1px solid var(--sm-line);
    border-left: 4px solid var(--_note, var(--sm-green));
    border-radius: 8px;
    background: var(--sm-panel);
}

.sm-note.is-blue { --_note: var(--sm-blue); }
.sm-note.is-gold { --_note: var(--sm-gold); }

.sm-note h3 {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 0 0 8px;
    font-size: 1.05rem;
}

.sm-note svg {
    width: 20px;
    height: 20px;
    color: var(--_note, var(--sm-green));
}

.sm-note p {
    margin: 0;
    color: var(--sm-muted);
}

.sm-companion {
    background:
        linear-gradient(135deg, rgba(45, 140, 255, 0.11), transparent 34%),
        linear-gradient(180deg, #07130d, #0a1710);
    border-top: 1px solid var(--sm-line);
    border-bottom: 1px solid var(--sm-line);
}

.sm-fam-row {
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 0 auto 26px;
}

.sm-fam-app {
    text-align: center;
    color: var(--fg);
    font-weight: 800;
}

.sm-fam-app img {
    display: block;
    width: 84px;
    height: 84px;
    margin: 0 auto 8px;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.42);
}

.sm-fam-link {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid var(--sm-line);
    border-radius: 50%;
    background: rgba(45, 140, 255, 0.14);
    color: #9dccff;
}

.sm-fam-link svg {
    width: 26px;
    height: 26px;
}

.sm-fam-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sm-fam-point {
    padding: 18px 20px;
    border: 1px solid var(--sm-line);
    border-left: 3px solid var(--sm-blue);
    border-radius: 8px;
    background: var(--sm-panel);
}

.sm-fam-point h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.sm-fam-point p {
    margin: 0;
    color: var(--sm-muted);
    font-size: 0.92rem;
}

.sm-fam-cta {
    margin-top: 26px;
    text-align: center;
}

.sm-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--sm-green), var(--sm-lime));
    color: #04130a;
    font-weight: 900;
}

.sm-link-btn:hover {
    color: #04130a;
    text-decoration: none;
    filter: brightness(1.06);
}

.sm-notify-section {
    scroll-margin-top: 24px;
}

.sm-notify-tool {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    align-items: center;
    padding: 28px;
    border: 1px solid rgba(247, 179, 22, 0.34);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(247, 179, 22, 0.14), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
    box-shadow: var(--sm-shadow);
}

.sm-notify-copy h2 {
    margin: 0 0 12px;
    font-size: clamp(1.55rem, 3.2vw, 2.1rem);
    line-height: 1.14;
    letter-spacing: 0;
}

.sm-notify-copy p {
    margin: 0 0 16px;
    color: var(--sm-muted);
}

.sm-privacy-list {
    display: grid;
    gap: 9px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sm-privacy-list li {
    position: relative;
    padding-left: 26px;
    color: var(--fg);
    font-size: 0.94rem;
}

.sm-privacy-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--sm-gold);
    box-shadow: 0 0 12px rgba(247, 179, 22, 0.5);
}

.sm-notify-form {
    display: grid;
    gap: 10px;
    padding: 20px;
    border: 1px solid var(--sm-line);
    border-radius: 8px;
    background: rgba(5, 17, 10, 0.62);
}

.sm-notify-form label {
    color: var(--fg);
    font-size: 0.86rem;
    font-weight: 900;
}

.sm-field-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.sm-field-row input {
    width: 100%;
    min-width: 0;
    padding: 13px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #08120d;
    color: var(--fg);
    font: inherit;
}

.sm-field-row input::placeholder {
    color: rgba(184, 195, 189, 0.62);
}

.sm-field-row input:focus {
    outline: 2px solid rgba(132, 230, 88, 0.72);
    outline-offset: 2px;
    border-color: transparent;
}

.sm-field-row button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--sm-green), var(--sm-lime));
    color: #04130a;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    white-space: nowrap;
}

.sm-field-row button:hover {
    filter: brightness(1.06);
}

.sm-field-row button:disabled {
    cursor: wait;
    opacity: 0.72;
}

.sm-form-help,
.sm-form-status {
    margin: 0;
    color: var(--sm-muted);
    font-size: 0.82rem;
    line-height: 1.48;
}

.sm-form-status {
    min-height: 1.25em;
    color: var(--sm-gold);
    font-weight: 800;
}

.sm-faq {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.sm-faq details {
    padding: 4px 20px;
    border: 1px solid var(--sm-line);
    border-radius: 8px;
    background: var(--sm-panel);
}

.sm-faq details[open] {
    border-color: rgba(132, 230, 88, 0.44);
}

.sm-faq summary {
    position: relative;
    list-style: none;
    cursor: pointer;
    padding: 16px 32px 16px 0;
    font-weight: 800;
    font-size: 1.02rem;
}

.sm-faq summary::-webkit-details-marker {
    display: none;
}

.sm-faq summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--sm-lime);
    font-size: 1.4rem;
    line-height: 1;
}

.sm-faq details[open] summary::after {
    content: "-";
}

.sm-faq summary:hover {
    color: var(--sm-lime);
}

.sm-faq summary:focus-visible {
    outline: 2px solid var(--sm-lime);
    outline-offset: 3px;
    border-radius: 6px;
}

.sm-faq-a {
    padding: 0 0 16px;
}

.sm-faq-a p {
    margin: 0;
    color: var(--sm-muted);
    font-size: 0.96rem;
    line-height: 1.62;
}

.sm-final {
    text-align: center;
    border-top: 1px solid var(--sm-line);
    background:
        linear-gradient(135deg, rgba(132, 230, 88, 0.12), transparent 30%),
        linear-gradient(180deg, #0a1710, #07130d);
}

.sm-final h2 {
    margin: 0 0 12px;
    font-size: clamp(1.7rem, 3.2vw, 2.35rem);
    letter-spacing: 0;
}

.sm-final p {
    max-width: 610px;
    margin: 0 auto 24px;
    color: var(--sm-muted);
}

.sm-final .sm-store-row {
    justify-content: center;
}

.sm-banner-btn {
    display: block;
    width: 100%;
    max-width: 920px;
    margin: 0 auto 30px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
    cursor: zoom-in;
    line-height: 0;
}

.sm-banner-btn img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--sm-line);
    box-shadow: var(--sm-shadow);
    transition: transform 0.22s ease;
}

.sm-banner-btn:hover img,
.sm-banner-btn:focus-visible img {
    transform: scale(1.012);
}

.sm-disclaimer {
    max-width: 760px;
    margin: 28px auto 0;
    color: var(--sm-muted);
    font-size: 0.8rem;
    line-height: 1.55;
    opacity: 0.84;
}

.sm-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.sm-modal:target {
    display: flex;
}

.sm-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 13, 8, 0.84);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.sm-modal-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 470px;
    padding: 28px 26px 22px;
    border: 1px solid var(--sm-line);
    border-radius: 8px;
    background: linear-gradient(180deg, #102419, #07130d);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
    animation: sm-pop 0.18s ease;
}

.sm-modal-badge {
    display: inline-block;
    margin: 0 0 14px;
    padding: 5px 11px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sm-gold), #ffd56c);
    color: #2c1a00;
    font-size: 0.66rem;
    font-weight: 900;
    text-transform: uppercase;
}

.sm-modal-card h3 {
    margin: 0 0 14px;
    font-size: 1.3rem;
    line-height: 1.26;
    letter-spacing: 0;
}

.sm-modal-body p {
    margin: 0 0 12px;
    color: var(--sm-muted);
    font-size: 0.95rem;
    line-height: 1.62;
}

.sm-modal-body strong {
    color: var(--fg);
}

.sm-modal-x {
    position: absolute;
    top: 14px;
    right: 16px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--sm-line);
    border-radius: 50%;
    color: var(--fg);
    font-size: 1.35rem;
    line-height: 1;
}

.sm-modal-x:hover {
    color: var(--fg);
    background: var(--sm-panel-2);
    text-decoration: none;
}

.sm-modal-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.sm-modal-close-btn {
    padding: 11px 8px;
    color: var(--sm-muted);
    font-weight: 800;
}

.sm-modal-close-btn:hover {
    color: var(--fg);
    text-decoration: none;
}

@keyframes sm-pop {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 980px) {
    .sm-grid,
    .sm-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .sm-hero-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .sm-brand-banner,
    .sm-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .sm-availability,
    .sm-store-row,
    .sm-chips {
        justify-content: center;
    }

    .sm-proof {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .sm-hero-media {
        order: -1;
    }

    .sm-device-showcase {
        min-height: 500px;
        max-width: 500px;
    }

    .sm-feature {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .sm-feature.is-rev .sm-feature-media {
        order: 0;
    }

    .sm-twocol,
    .sm-fam-points,
    .sm-notify-tool {
        grid-template-columns: 1fr;
    }

    .sm-feature-body {
        max-width: 620px;
        margin: 0 auto;
    }
}

@media (max-width: 560px) {
    .sm-hero-inner {
        padding: 36px 20px 30px;
    }

    .sm-section {
        padding: 42px 20px;
    }

    .sm-brand-banner {
        max-width: 320px;
    }

    .sm-hero h1 {
        font-size: 3.35rem;
    }

    .sm-tagline {
        font-size: 1.55rem;
    }

    .sm-hero-media {
        order: 0;
    }

    .sm-device-showcase {
        min-height: 410px;
        max-width: 340px;
    }

    .sm-shot-main {
        width: 190px;
    }

    .sm-shot-map,
    .sm-shot-widget {
        width: 134px;
    }

    .sm-shot-map {
        left: 0;
        top: 86px;
    }

    .sm-shot-widget {
        right: 0;
        top: 104px;
    }

    .sm-showcase-caption {
        width: 94%;
        padding: 10px 12px;
    }

    .sm-showcase-caption strong {
        font-size: 0.86rem;
    }

    .sm-grid,
    .sm-steps {
        grid-template-columns: 1fr;
    }

    .sm-shot-card {
        flex-basis: 136px;
    }

    .sm-duo {
        gap: 10px;
    }

    .sm-duo .sm-feature-shot img {
        width: min(42vw, 160px);
    }

    .sm-fam-row {
        gap: 10px;
    }

    .sm-fam-app img {
        width: 64px;
        height: 64px;
    }

    .sm-fam-link {
        width: 42px;
        height: 42px;
    }

    .sm-field-row {
        grid-template-columns: 1fr;
    }

    .sm-field-row button {
        width: 100%;
    }

    .sm-notify-tool,
    .sm-notify-form {
        padding: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sm-shot,
    .sm-shot-card,
    .sm-store,
    .sm-banner-btn img {
        transition: none;
    }

    .sm-modal-card {
        animation: none;
    }
}
