:root {
    --bg: #f4f1ea;
    --surface: rgba(255, 255, 255, 0.88);
    --surface-strong: #ffffff;
    --surface-dark: #08111f;
    --ink: #11203a;
    --muted: #57647a;
    --line: rgba(17, 32, 58, 0.12);
    --line-strong: rgba(17, 32, 58, 0.2);
    --brand: #0b7a86;
    --brand-deep: #0f3e55;
    --accent: #cc8f44;
    --success: #1d8e5a;
    --danger: #c84d4d;
    --shadow-soft: 0 20px 60px rgba(8, 17, 31, 0.08);
    --shadow-card: 0 18px 38px rgba(8, 17, 31, 0.06);
    --radius-lg: 28px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --shell: min(1200px, calc(100vw - 40px));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Sora", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(11, 122, 134, 0.12), transparent 34%),
        radial-gradient(circle at top right, rgba(204, 143, 68, 0.14), transparent 30%),
        linear-gradient(180deg, #f8f5ef 0%, #f2efe8 32%, #f7f5f0 100%);
    line-height: 1.65;
}

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

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

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

.page-shell {
    width: var(--shell);
    margin: 0 auto;
}

.region-banner {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: rgba(8, 17, 31, 0.92);
    color: #f5f7fb;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.region-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 60px;
    padding: 12px 0;
}

.region-banner__text {
    margin: 0;
    color: rgba(245, 247, 251, 0.88);
}

.region-banner__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.region-banner__link {
    color: #cfe7f0;
    font-weight: 600;
}

.region-banner__dismiss {
    border: 0;
    background: transparent;
    color: rgba(245, 247, 251, 0.72);
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: var(--locale-banner-height, 0px);
    z-index: 30;
    backdrop-filter: blur(18px);
    background: rgba(248, 245, 239, 0.74);
    border-bottom: 1px solid rgba(17, 32, 58, 0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 84px;
}

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

.brand__mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    box-shadow: var(--shadow-card);
}

.brand__copy {
    display: grid;
    gap: 2px;
}

.brand__copy strong {
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.brand__copy small {
    color: var(--muted);
    font-size: 0.75rem;
}

.brand--footer .brand__copy small {
    color: rgba(220, 230, 239, 0.66);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.site-nav a {
    color: var(--muted);
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--ink);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.locale-switch {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--brand-deep);
    font-size: 0.88rem;
    background: rgba(255, 255, 255, 0.72);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--brand-deep), var(--brand));
    color: #f9fbff;
    font-weight: 600;
    box-shadow: 0 16px 28px rgba(15, 62, 85, 0.16);
}

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

.btn--ghost {
    background: rgba(255, 255, 255, 0.74);
    border-color: var(--line);
    color: var(--ink);
    box-shadow: none;
}

.btn--small {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.9rem;
}

.btn--block {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    border-radius: 18px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    border-top: 1px solid var(--line);
}

.mobile-nav__inner {
    padding: 0 0 22px;
}

.site-nav--mobile {
    display: grid;
    gap: 4px;
    padding-top: 16px;
}

.site-nav--mobile a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(17, 32, 58, 0.08);
}

.mobile-nav__footer {
    display: grid;
    gap: 12px;
    padding-top: 18px;
}

.locale-switch--mobile {
    text-align: center;
}

main {
    overflow: hidden;
}

.hero {
    padding: 56px 0 28px;
}

.hero--compact {
    padding-top: 42px;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 38px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(11, 122, 134, 0.18);
    background: rgba(255, 255, 255, 0.78);
    color: var(--brand-deep);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.display {
    margin: 18px 0 18px;
    font-family: "Fraunces", serif;
    font-size: clamp(2.7rem, 6vw, 5.35rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.lead {
    max-width: 640px;
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.stat-card {
    padding: 18px 18px 16px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(17, 32, 58, 0.08);
    border-radius: 22px;
    box-shadow: var(--shadow-card);
}

.stat-card strong {
    display: block;
    font-size: 1.22rem;
    margin-bottom: 8px;
}

.stat-card span {
    color: var(--muted);
    font-size: 0.92rem;
}

.hero-stage {
    position: relative;
    min-height: 620px;
    padding: 32px;
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.56);
    background:
        radial-gradient(circle at top right, rgba(11, 122, 134, 0.18), transparent 42%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(243, 240, 232, 0.86));
    box-shadow: 0 34px 80px rgba(8, 17, 31, 0.12);
    overflow: hidden;
}

.hero-stage::before,
.hero-stage::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
}

.hero-stage::before {
    inset: auto -80px -40px auto;
    width: 240px;
    height: 240px;
    background: rgba(204, 143, 68, 0.18);
}

.hero-stage::after {
    inset: 34px auto auto -70px;
    width: 220px;
    height: 220px;
    background: rgba(11, 122, 134, 0.16);
}

.pulse-card,
.dashboard-shell,
.phone-shell,
.floating-note {
    position: absolute;
    box-shadow: var(--shadow-soft);
}

.pulse-card {
    top: 26px;
    left: 26px;
    width: min(100%, 320px);
    padding: 18px;
    border-radius: 24px;
    background: rgba(8, 17, 31, 0.92);
    color: #f9fbff;
}

.pulse-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.pulse-card__top strong {
    font-size: 0.98rem;
}

.pulse-dot {
    display: inline-flex;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #5ef2af;
    box-shadow: 0 0 0 10px rgba(94, 242, 175, 0.14);
}

.pulse-list {
    display: grid;
    gap: 12px;
}

.pulse-list div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.9rem;
}

.pulse-list span {
    color: rgba(249, 251, 255, 0.66);
}

.pulse-list strong {
    color: #ffffff;
    font-weight: 600;
}

.dashboard-shell {
    right: 30px;
    top: 118px;
    width: min(100%, 420px);
    padding: 22px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    background: rgba(255, 255, 255, 0.88);
}

.dashboard-shell__top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
}

.dashboard-shell__top h3 {
    margin: 0;
    font-size: 1rem;
}

.dashboard-shell__top p {
    margin: 4px 0 0;
    font-size: 0.88rem;
    color: var(--muted);
}

.chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(11, 122, 134, 0.18);
    background: rgba(11, 122, 134, 0.08);
    color: var(--brand-deep);
    font-size: 0.82rem;
    font-weight: 600;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.metric-grid article {
    padding: 16px;
    border-radius: 22px;
    background: #f7f6f1;
    border: 1px solid rgba(17, 32, 58, 0.08);
}

.metric-grid article strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.32rem;
}

.metric-grid article span {
    color: var(--muted);
    font-size: 0.88rem;
}

.metric-grid article small {
    display: block;
    margin-top: 12px;
    color: var(--brand-deep);
    font-weight: 600;
}

.phone-shell {
    left: 58px;
    bottom: 22px;
    width: 246px;
    padding: 16px;
    border-radius: 34px;
    background: #0e182a;
    border: 8px solid #0a1322;
}

.phone-shell img {
    border-radius: 22px;
    width: 100%;
    aspect-ratio: 9 / 19;
    object-fit: cover;
}

.floating-note {
    right: 24px;
    bottom: 32px;
    width: min(100%, 280px);
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(17, 32, 58, 0.08);
}

.floating-note strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

.floating-note p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.section {
    padding: 42px 0 22px;
}

.section--airy {
    padding: 82px 0;
}

.section--topline {
    border-top: 1px solid rgba(17, 32, 58, 0.08);
}

.section--surface {
    margin: 26px 0;
    padding: 34px 0;
    background: rgba(255, 255, 255, 0.55);
    border-block: 1px solid rgba(17, 32, 58, 0.06);
}

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 26px;
    margin-bottom: 26px;
}

.section-header h2 {
    margin: 10px 0 0;
    font-family: "Fraunces", serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.section-header p {
    margin: 0;
    max-width: 560px;
    color: var(--muted);
}

.grid {
    display: grid;
    gap: 18px;
}

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

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

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

.card {
    padding: 26px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(17, 32, 58, 0.08);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-card);
}

.card h3,
.card h4 {
    margin: 0 0 10px;
}

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

.card__eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--brand-deep);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.icon-badge {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(11, 122, 134, 0.16), rgba(204, 143, 68, 0.14));
    color: var(--brand-deep);
    font-weight: 700;
}

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

.list-clean li {
    display: flex;
    gap: 12px;
    color: var(--muted);
}

.list-clean li::before {
    content: "";
    flex: none;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    margin-top: 9px;
    background: linear-gradient(135deg, var(--brand), var(--accent));
}

.split-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: 18px;
}

.stacked-panel {
    padding: 34px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(8, 17, 31, 0.96), rgba(15, 62, 85, 0.94));
    color: #f7fafc;
    box-shadow: 0 32px 70px rgba(8, 17, 31, 0.18);
}

.stacked-panel p,
.stacked-panel li {
    color: rgba(247, 250, 252, 0.78);
}

.stacked-panel h3 {
    margin-top: 0;
}

.mini-chart {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.mini-chart__row {
    display: grid;
    grid-template-columns: 160px 1fr 64px;
    gap: 14px;
    align-items: center;
}

.mini-chart__row span {
    font-size: 0.9rem;
}

.mini-chart__bar {
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.mini-chart__bar i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #8ce1ef, #d9a86b);
}

.device-frame {
    padding: 18px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(17, 32, 58, 0.08);
}

.device-frame img {
    width: 100%;
    border-radius: 24px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.quote-card {
    display: grid;
    gap: 18px;
}

.quote-card blockquote {
    margin: 0;
    font-size: 1.04rem;
    color: var(--ink);
}

.quote-card footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--muted);
    font-size: 0.9rem;
}

.result-badge {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(29, 142, 90, 0.1);
    color: var(--success);
    font-weight: 600;
}

.steps {
    display: grid;
    gap: 16px;
}

.step-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    align-items: start;
    padding: 22px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(17, 32, 58, 0.08);
}

.step-card__number {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-deep);
    background: linear-gradient(135deg, rgba(11, 122, 134, 0.12), rgba(204, 143, 68, 0.16));
}

.step-card h3 {
    margin: 0 0 8px;
}

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

.property-card {
    min-height: 280px;
    padding: 26px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    color: #f7fafc;
}

.property-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 17, 31, 0.1), rgba(8, 17, 31, 0.84));
}

.property-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-card__copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 100%;
}

.property-card p {
    color: rgba(247, 250, 252, 0.78);
}

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

details.detail-card {
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(17, 32, 58, 0.08);
    background: rgba(255, 255, 255, 0.82);
}

details.detail-card summary {
    cursor: pointer;
    list-style: none;
    font-weight: 600;
}

details.detail-card summary::-webkit-details-marker {
    display: none;
}

details.detail-card p {
    margin: 14px 0 0;
}

.cta-band {
    padding: 34px;
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(204, 143, 68, 0.2), transparent 34%),
        linear-gradient(135deg, #0b1728, #12364a 54%, #0d7a86 100%);
    color: #f8fbff;
    box-shadow: 0 32px 70px rgba(8, 17, 31, 0.18);
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.cta-band p {
    margin: 12px 0 0;
    max-width: 700px;
    color: rgba(248, 251, 255, 0.82);
}

.site-footer {
    padding: 60px 0 28px;
    margin-top: 34px;
    background: #08111f;
    color: #dce6ef;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.site-footer__grid h3 {
    margin: 0 0 14px;
    color: #f4f7fb;
    font-size: 0.95rem;
}

.site-footer__grid a,
.site-footer__grid p {
    display: block;
    margin: 0 0 12px;
    color: rgba(220, 230, 239, 0.74);
    font-size: 0.92rem;
}

.site-footer__summary {
    max-width: 460px;
}

.site-footer__meta {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(220, 230, 239, 0.12);
    color: rgba(220, 230, 239, 0.58);
    font-size: 0.88rem;
}

.hero-copy-panel,
.contact-layout,
.contact-card-stack,
.outcome-grid,
.badge-strip,
.pill-grid {
    display: grid;
    gap: 18px;
}

.badge-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.badge-tile {
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(17, 32, 58, 0.08);
    color: var(--muted);
}

.badge-tile strong {
    display: block;
    color: var(--ink);
    margin-bottom: 6px;
    font-size: 1.16rem;
}

.contact-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.contact-card-stack {
    align-content: start;
}

.contact-card {
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(17, 32, 58, 0.08);
    box-shadow: var(--shadow-card);
}

.contact-card h3 {
    margin-top: 0;
}

.lead-form {
    display: grid;
    gap: 18px;
}

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

.lead-form__message {
    grid-column: 1 / -1;
}

.lead-form label {
    display: grid;
    gap: 8px;
}

.lead-form span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink);
}

.lead-form input,
.lead-form textarea,
.lead-form select {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(17, 32, 58, 0.12);
    background: rgba(249, 248, 244, 0.92);
    color: var(--ink);
}

.lead-form textarea {
    min-height: 160px;
    resize: vertical;
}

.lead-form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    padding: 14px 16px;
    border-radius: 18px;
    font-size: 0.95rem;
}

.form-status.is-success {
    background: rgba(29, 142, 90, 0.12);
    color: var(--success);
}

.form-status.is-error {
    background: rgba(200, 77, 77, 0.12);
    color: var(--danger);
}

.metrics-shell {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
}

.timeline-list {
    display: grid;
    gap: 16px;
}

.timeline-item {
    position: relative;
    padding: 0 0 0 30px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--accent));
}

.timeline-item strong {
    display: block;
    margin-bottom: 6px;
}

.timeline-item p {
    margin: 0;
    color: var(--muted);
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .hero__grid,
    .split-panel,
    .contact-layout,
    .metrics-shell,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

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

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

    .hero-stage {
        min-height: 720px;
    }
}

@media (max-width: 900px) {
    .site-nav--desktop,
    .site-header__actions .btn--ghost,
    .site-header__actions .locale-switch {
        display: none;
    }

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

    .mobile-nav.is-open {
        display: block;
    }

    .hero__stats,
    .grid--3,
    .grid--2,
    .details-grid,
    .pill-grid,
    .property-grid,
    .lead-form__grid {
        grid-template-columns: 1fr;
    }

    .mini-chart__row {
        grid-template-columns: 1fr;
    }

    .cta-band__inner,
    .section-header {
        align-items: start;
        flex-direction: column;
    }

    .hero-stage {
        min-height: 780px;
        padding: 22px;
    }

    .phone-shell {
        left: 22px;
        width: 210px;
    }

    .dashboard-shell {
        right: 16px;
        width: calc(100% - 32px);
    }

    .floating-note {
        right: 16px;
        width: calc(100% - 32px);
    }
}

@media (max-width: 640px) {
    :root {
        --shell: min(1200px, calc(100vw - 26px));
    }

    .region-banner__inner,
    .site-header__inner {
        min-height: auto;
        padding: 12px 0;
    }

    .hero {
        padding-top: 28px;
    }

    .display {
        font-size: clamp(2.35rem, 12vw, 3.4rem);
    }

    .hero-stage {
        min-height: 720px;
    }

    .pulse-card,
    .dashboard-shell,
    .phone-shell,
    .floating-note {
        position: static;
        width: 100%;
        margin-bottom: 16px;
    }

    .phone-shell {
        max-width: 246px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stage {
        display: flex;
        flex-direction: column;
        justify-content: start;
    }

    .badge-strip,
    .property-grid {
        grid-template-columns: 1fr;
    }

    .section--airy {
        padding: 58px 0;
    }

    .card,
    .contact-card,
    .cta-band {
        padding: 22px;
    }
}
