@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700&display=swap");

:root {
    --ink: #111111;
    --paper: #ffffff;
    --green: #08624b;
    --brown: #42210b;
    --soft: #f6f6f3;
    --line: rgba(17, 17, 17, 0.12);
    --radius: 22px;
    --max: 1240px;
    --pad: max(20px, calc((100vw - var(--max)) / 2));
    --ease: cubic-bezier(0.2, 0.72, 0.25, 1);
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
}
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "DM Sans", Arial, sans-serif;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
button,
input {
    font: inherit;
}
button {
    color: inherit;
}
h1,
h2,
h3,
p {
    margin-top: 0;
}
h1,
h2,
h3 {
    font-family: "Manrope", Arial, sans-serif;
}
h1,
h2 {
    letter-spacing: -0.045em;
    line-height: 1.02;
    text-transform: none;
}
h1 {
    font-size: clamp(3rem, 5vw, 5.4rem);
    margin: 0 0 24px;
    max-width: 850px;
}
h2 {
    font-size: clamp(2.35rem, 3.8vw, 4.25rem);
    margin: 0;
    max-width: 900px;
}
h1 em,
h2 em {
    font-family: Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.035em;
}
h3 {
    letter-spacing: -0.03em;
}
.section-pad {
    padding-left: var(--pad);
    padding-right: var(--pad);
}
.eyebrow {
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 0.16em;
    font-weight: 700;
    margin: 0 0 18px;
    text-transform: uppercase;
}
.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-width: 0;
    padding: 14px 19px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    border: 0;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}
.pill:hover {
    transform: translateY(-2px);
    background: var(--brown);
}
.pill span {
    font-size: 18px;
    line-height: 1;
}
.pill-small {
    padding: 11px 15px;
    font-size: 10px;
}
.dark-section {
    background: #0c0c0c;
    color: #fff;
}
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.65s var(--ease),
        transform 0.65s var(--ease);
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Header */
.site-header {
    height: 72px;
    padding: 0 var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 11px;
    line-height: 1;
    white-space: nowrap;
}
.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--green);
    color: #fff;
    font-size: 14px;
}
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 13px;
    font-weight: 600;
}
.desktop-nav a {
    padding: 26px 0 23px;
    position: relative;
    white-space: nowrap;
}
.desktop-nav a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 17px;
    height: 2px;
    background: var(--green);
    transition: right 0.2s ease;
}
.desktop-nav a:hover {
    color: var(--green);
}
.desktop-nav a:hover:after {
    right: 0;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.phone {
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}
.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    padding: 8px;
    cursor: pointer;
}
.menu-button i {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    margin: 4px auto;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}
.menu-button[aria-expanded="true"] i:first-child {
    transform: translateY(3px) rotate(45deg);
}
.menu-button[aria-expanded="true"] i:last-child {
    transform: translateY(-3px) rotate(-45deg);
}
.mobile-menu {
    position: fixed;
    top: 78px;
    left: 14px;
    right: 14px;
    z-index: 60;
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}
.mobile-menu.open {
    display: flex;
}
.mobile-menu a {
    padding: 13px 14px;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 600;
}
.mobile-menu a:hover {
    background: rgba(8, 98, 75, 0.08);
    color: var(--green);
}
.mobile-menu .mobile-menu-cta {
    margin-top: 5px;
    background: var(--green);
    color: #fff;
    text-align: center;
}
.mobile-menu .mobile-menu-cta:hover {
    background: var(--brown);
    color: #fff;
}

/* Hero */
.hero {
    padding-top: 54px;
    padding-bottom: 72px;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 620px;
    margin: 0 0 46px auto;
    gap: 20px;
}
.hero-stats div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.hero-stats strong {
    font-size: 27px;
    letter-spacing: -0.04em;
}
.hero-stats span {
    font-size: 9px;
    text-transform: uppercase;
    opacity: 0.58;
    letter-spacing: 0.06em;
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
    align-items: center;
    gap: 72px;
}
.hero-copy {
    position: relative;
    z-index: 2;
}
.lead {
    max-width: 580px;
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.65;
    margin: 0 0 28px;
    color: #333;
}
.machine-stage {
    min-height: 570px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sun-disc {
    position: absolute;
    width: 470px;
    height: 470px;
    border-radius: 50%;
    background: var(--brown);
    top: 35px;
    right: -40px;
    opacity: 0.96;
}
.machine {
    position: relative;
    width: 300px;
    height: 510px;
    background: #fff;
    border: 2px solid #111;
    border-radius: 6px 6px 12px 12px;
    box-shadow: -20px 30px 55px rgba(0, 0, 0, 0.18);
    transform: perspective(900px) rotateY(-6deg);
    padding: 26px;
    z-index: 1;
}
.machine:after {
    content: "";
    position: absolute;
    top: -2px;
    right: -38px;
    width: 38px;
    height: calc(100% + 4px);
    background: var(--brown);
    transform-origin: left;
    transform: skewY(-32deg);
    border-radius: 0 5px 10px 0;
}
.machine-sign {
    font-family: Manrope;
    font-size: 30px;
    line-height: 0.88;
    letter-spacing: -0.07em;
}
.machine-screen {
    position: absolute;
    right: 20px;
    top: 90px;
    width: 100px;
    height: 160px;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 17px;
    line-height: 1;
}
.coffee-unit {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 275px;
    height: 108px;
    background: #000;
    border-radius: 4px;
    padding: 17px;
    display: flex;
    gap: 8px;
}
.coffee-unit i {
    width: 11px;
    background: #fff;
    border-radius: 2px;
}
.coffee-unit .cup {
    margin-left: auto;
    align-self: flex-end;
    width: 48px;
    height: 42px;
    border-radius: 3px 3px 16px 16px;
    background: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
}
.machine-base {
    position: absolute;
    bottom: 18px;
    left: 26px;
    right: 26px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    font-size: 11px;
}
.machine-base b {
    font-size: 45px;
}
.price-tag {
    position: absolute;
    right: -8px;
    top: 175px;
    z-index: 3;
    background: var(--green);
    color: #fff;
    width: 145px;
    height: 145px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: rotate(6deg);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}
.price-tag small,
.price-tag span {
    font-size: 8px;
}
.price-tag strong {
    font-size: 24px;
}
.media-note {
    position: absolute;
    bottom: 10px;
    right: 0;
    font-size: 8px;
    letter-spacing: 0.12em;
    opacity: 0.5;
}

/* Statement / metrics */
.statement {
    padding-top: 96px;
    padding-bottom: 96px;
}
.split-heading {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 54px;
    align-items: start;
}
.split-heading h2 {
    max-width: 820px;
}
.metric-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 68px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.metric-row article {
    padding: 28px 26px;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}
.metric-row article:last-child {
    border-right: 0;
}
.metric-row article > span {
    font-size: 10px;
    opacity: 0.45;
}
.metric-row strong {
    font-size: clamp(2.3rem, 3vw, 3.5rem);
    letter-spacing: -0.055em;
    margin: auto 0 7px;
}
.metric-row p {
    font-size: 12px;
    line-height: 1.45;
    max-width: 170px;
    margin: 0;
    opacity: 0.65;
}

/* Features */
.features {
    padding-top: 96px;
    padding-bottom: 96px;
}
.section-head {
    max-width: 920px;
}
.feature-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 52px;
}
.feature-card {
    min-height: 330px;
    border-radius: var(--radius);
    padding: 23px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    transition: transform 0.25s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
}
.feature-card > span {
    font-size: 10px;
    opacity: 0.7;
}
.feature-icon {
    height: 130px;
    display: grid;
    place-items: center;
    font-size: 52px;
    font-weight: 600;
}
.feature-card h3 {
    font-size: 22px;
    margin: 0 0 10px;
}
.feature-card p {
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
    opacity: 0.78;
}
.card-red,
.card-yellow {
    background: var(--green);
    color: #fff;
    border-color: transparent;
}
.card-cyan {
    background: var(--brown);
    color: #fff;
    border-color: transparent;
}
.card-cream {
    background: #fff;
    color: #111;
}

/* Calculator */
.calculator {
    padding-top: 96px;
    padding-bottom: 96px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    background: var(--soft);
    border-top: 1px solid var(--line);
}
.calculator-copy > p:not(.eyebrow) {
    max-width: 530px;
    line-height: 1.65;
    margin-top: 26px;
    color: #444;
}
.range-label {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin: 50px 0 10px;
}
.range-label span {
    font-size: 13px;
}
.range-label strong {
    font-size: 52px;
    letter-spacing: -0.06em;
}
input[type="range"] {
    width: 100%;
    accent-color: var(--green);
}
.range-scale {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    opacity: 0.5;
}
.profit-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--line);
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 28px;
    align-items: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
}
.donut {
    width: 176px;
    height: 176px;
    border-radius: 50%;
    background: conic-gradient(var(--green) 0 53%, rgba(66, 33, 11, 0.13) 53%);
    display: grid;
    place-items: center;
    position: relative;
}
.donut:before {
    content: "";
    width: 116px;
    height: 116px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
}
.donut div {
    position: relative;
    z-index: 1;
    text-align: center;
}
.donut strong {
    display: block;
    font-size: 30px;
}
.donut span {
    font-size: 9px;
    text-transform: uppercase;
}
.profit-data p {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin: 0;
    font-size: 12px;
}
.profit-data strong {
    font-size: 16px;
}
.profit-data .profit-total {
    display: block;
    border: 0;
    padding-top: 22px;
}
.profit-total span {
    display: block;
    margin-bottom: 4px;
}
.profit-total strong {
    font-size: 34px;
    color: var(--green);
    letter-spacing: -0.05em;
}
.profit-card > small {
    grid-column: 1/-1;
    opacity: 0.55;
    line-height: 1.5;
}

/* Phone */
.phone-section {
    padding-top: 96px;
    padding-bottom: 96px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
    align-items: center;
    overflow: hidden;
}
.phone-mockup {
    display: flex;
    justify-content: center;
    position: relative;
}
.phone-mockup:before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: var(--brown);
    top: 14%;
}
.phone-shell {
    width: 265px;
    height: 540px;
    border: 8px solid #000;
    border-radius: 40px;
    background: #fff;
    color: #111;
    position: relative;
    z-index: 1;
    padding: 38px 18px 18px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
    transform: rotate(-5deg);
}
.phone-top {
    position: absolute;
    width: 80px;
    height: 19px;
    border-radius: 0 0 14px 14px;
    background: #000;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.phone-shell > p {
    font-size: 8px;
    letter-spacing: 0.13em;
    margin: 16px 0 6px;
}
.phone-shell h3 {
    font-size: 26px;
    margin-bottom: 16px;
}
.app-graph {
    height: 150px;
    background: #000;
    border-radius: 15px;
    padding: 22px 15px 15px;
    display: flex;
    gap: 7px;
    align-items: end;
}
.app-graph i {
    flex: 1;
    background: var(--green);
    border-radius: 3px 3px 0 0;
}
.app-graph i:nth-child(1) {
    height: 30%;
}
.app-graph i:nth-child(2) {
    height: 48%;
}
.app-graph i:nth-child(3) {
    height: 42%;
}
.app-graph i:nth-child(4) {
    height: 75%;
}
.app-graph i:nth-child(5) {
    height: 58%;
}
.app-graph i:nth-child(6) {
    height: 92%;
}
.app-total {
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
}
.app-total strong {
    font-size: 20px;
}
.app-card {
    background: var(--green);
    color: #fff;
    border-radius: 14px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.app-card span {
    font-size: 10px;
}
.phone-copy h2 {
    max-width: 680px;
}
.benefit-list {
    margin-top: 42px;
}
.benefit-list article {
    display: grid;
    grid-template-columns: 90px 1fr;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.benefit-list strong {
    color: #fff;
}
.benefit-list span {
    opacity: 0.72;
    line-height: 1.5;
}

/* About */
.about {
    padding-top: 96px;
    padding-bottom: 96px;
}
.about-tabs {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid var(--line);
    margin: 48px 0 26px;
}
.about-tabs button {
    border: 0;
    background: none;
    padding: 15px 0;
    opacity: 0.45;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    position: relative;
}
.about-tabs button.active {
    opacity: 1;
}
.about-tabs button.active:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    background: var(--green);
}
.about-panel {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 58px;
    align-items: center;
}
.photo-placeholder {
    min-height: 470px;
    background: var(--brown);
    color: #fff;
    border-radius: var(--radius);
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}
.photo-placeholder > span {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 9px;
    letter-spacing: 0.13em;
}
.abstract-cup {
    font-size: 125px;
    filter: grayscale(1);
    transform: rotate(-7deg);
}
.about-panel h3 {
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.04;
}
.about-panel p {
    font-size: 16px;
    line-height: 1.65;
}
.about-panel ul {
    padding-left: 18px;
}
.about-panel li {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}
.panel-number {
    font-size: 10px;
    opacity: 0.5;
}

/* Station */
.station {
    padding-top: 96px;
    padding-bottom: 96px;
    background: #fff;
    border-top: 1px solid var(--line);
}
.station-top,
.stories-top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 36px;
}
.station-switch {
    display: flex;
    border: 1px solid var(--ink);
    border-radius: 999px;
    padding: 4px;
}
.station-switch button {
    border: 0;
    background: none;
    padding: 10px 20px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 12px;
}
.station-switch button.active {
    background: var(--ink);
    color: #fff;
}
.station-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 50px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.station-visual {
    min-height: 520px;
    background: var(--green);
    display: grid;
    place-items: center;
}
.mini-station {
    width: 275px;
    height: 430px;
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.mini-station > div {
    font-family: Manrope;
    font-size: 31px;
    line-height: 0.88;
}
.mini-station > span {
    display: grid;
    place-items: center;
    background: #000;
    color: #fff;
    font-size: 60px;
    height: 185px;
    margin-top: 63px;
}
.mini-station > small {
    position: absolute;
    bottom: 16px;
    left: 24px;
    font-size: 8px;
}
.equipment {
    padding: 42px;
}
.equipment ul {
    list-style: none;
    padding: 0;
    columns: 2;
    column-gap: 25px;
}
.equipment li {
    font-size: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    break-inside: avoid;
}
.station-price {
    margin-top: 48px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 14px;
    align-items: end;
}
.station-price span {
    font-size: 11px;
}
.station-price strong {
    font-size: 48px;
    letter-spacing: -0.055em;
}
.station-price small {
    grid-column: 2;
}

/* Comparison */
.comparison {
    padding-top: 96px;
    padding-bottom: 96px;
}
.compare-table {
    margin-top: 52px;
}
.compare-table > div {
    display: grid;
    grid-template-columns: 1fr 0.62fr 0.62fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 18px 0;
    align-items: center;
    gap: 18px;
}
.compare-head {
    color: #fff;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.07em;
}
.compare-table span {
    opacity: 0.62;
}
.compare-table b {
    font-size: 17px;
}
.compare-table b:last-child {
    opacity: 0.5;
    font-weight: 400;
}

/* Steps */
.steps {
    padding-top: 96px;
    padding-bottom: 96px;
}
.step-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 52px;
}
.step-list article {
    min-height: 280px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    display: flex;
    flex-direction: column;
}
.step-list article:nth-child(2n) {
    background: var(--brown);
    color: #fff;
    border-color: transparent;
}
.step-list span {
    font-size: 30px;
}
.step-list h3 {
    font-size: 22px;
    margin-top: auto;
    margin-bottom: 10px;
}
.step-list p {
    font-size: 12px;
    line-height: 1.55;
    opacity: 0.72;
    margin-bottom: 0;
}

/* Support */
.support {
    padding-top: 96px;
    padding-bottom: 96px;
    background: var(--green);
    color: #fff;
}
.support-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 72px;
}
.support-intro h2 {
    font-size: clamp(2.35rem, 3.5vw, 3.9rem);
}
.support-intro > p:last-child {
    line-height: 1.65;
    max-width: 430px;
    margin-top: 25px;
    opacity: 0.8;
}
.accordion article {
    border-top: 1px solid rgba(255, 255, 255, 0.35);
}
.accordion article:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.accordion button {
    width: 100%;
    border: 0;
    background: none;
    padding: 21px 0;
    display: grid;
    grid-template-columns: 45px 1fr auto;
    text-align: left;
    font-size: 19px;
    cursor: pointer;
}
.accordion button span {
    font-size: 10px;
    opacity: 0.7;
}
.accordion button i {
    font-style: normal;
}
.accordion article > div {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s var(--ease);
}
.accordion article > div p {
    overflow: hidden;
    margin: 0;
    max-width: 560px;
    line-height: 1.6;
    opacity: 0.8;
}
.accordion article.open > div {
    grid-template-rows: 1fr;
}
.accordion article.open > div p {
    padding: 0 0 24px 45px;
}
.accordion article.open button i {
    transform: rotate(45deg);
}

/* Locations */
.locations {
    padding-top: 96px;
    padding-bottom: 96px;
}
.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 48px;
}
.location-tags span {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    padding: 13px 18px;
    font-size: 12px;
    transition: 0.2s;
}
.location-tags span:hover {
    background: #fff;
    border-color: #fff;
    color: #111;
}
.location-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 58px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.location-metrics article {
    padding: 27px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}
.location-metrics article:last-child {
    border-right: 0;
}
.location-metrics strong {
    font-size: clamp(2.7rem, 4vw, 4.6rem);
    letter-spacing: -0.06em;
    color: #fff;
}
.location-metrics p {
    opacity: 0.6;
    margin-bottom: 0;
    font-size: 12px;
    line-height: 1.45;
}

/* Stories */
.stories {
    padding-top: 96px;
    padding-bottom: 96px;
}
.slider-arrows {
    display: flex;
    gap: 8px;
}
.slider-arrows button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--ink);
    background: none;
    font-size: 17px;
    cursor: pointer;
}
.story-window {
    overflow: hidden;
    margin-top: 50px;
}
.story-track {
    display: flex;
    gap: 16px;
    transition: transform 0.45s var(--ease);
}
.story-card {
    min-width: calc((100% - 32px) / 3);
}
.video-placeholder {
    height: 310px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--green), var(--brown));
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}
.video-placeholder:after {
    content: "";
    width: 92px;
    height: 170px;
    border-radius: 46px 46px 16px 16px;
    background: rgba(255, 255, 255, 0.18);
    position: absolute;
    bottom: 0;
}
.video-placeholder button {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 0;
    background: #fff;
    color: var(--green);
    font-size: 20px;
    z-index: 2;
    cursor: pointer;
}
.video-placeholder span {
    position: absolute;
    left: 17px;
    top: 17px;
    font-size: 8px;
    letter-spacing: 0.12em;
}
.story-card h3 {
    font-size: 21px;
    margin: 16px 0 4px;
}
.story-card > p {
    opacity: 0.6;
    font-size: 13px;
}
.story-card > div:last-child {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}
.story-card > div:last-child span {
    font-size: 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 10px;
}

/* FAQ */
.faq {
    padding-top: 96px;
    padding-bottom: 96px;
}
.faq-list {
    margin-top: 48px;
}
.faq-list article {
    border-top: 1px solid var(--line);
}
.faq-list article:last-child {
    border-bottom: 1px solid var(--line);
}
.faq-list button {
    width: 100%;
    border: 0;
    background: none;
    text-align: left;
    padding: 21px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: clamp(1.15rem, 1.8vw, 1.6rem);
    font-weight: 600;
    cursor: pointer;
}
.faq-list i {
    font-style: normal;
}
.faq-list article > div {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s;
}
.faq-list p {
    overflow: hidden;
    max-width: 760px;
    line-height: 1.65;
    margin: 0;
    color: #444;
}
.faq-list article.open > div {
    grid-template-rows: 1fr;
}
.faq-list article.open p {
    padding-bottom: 22px;
}
.faq-list article.open i {
    transform: rotate(45deg);
}

/* Contact / footer */
.contact {
    padding-top: 96px;
    padding-bottom: 96px;
    background: var(--green);
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}
.contact-copy p:last-child {
    max-width: 500px;
    line-height: 1.65;
    margin-top: 26px;
    opacity: 0.82;
}
.contact-form {
    display: grid;
    gap: 21px 18px;
    align-content: start;
}
.contact-form label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.contact-form input:not([type="checkbox"]) {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    background: transparent;
    padding: 12px 0;
    color: #fff;
    outline: none;
}
.contact-form input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}
.contact-form .consent {
    grid-column: 1/-1;
    display: flex;
    gap: 10px;
    align-items: center;
    text-transform: none;
    letter-spacing: 0;
}
.contact-form .pill {
    background: var(--brown);
}
.contact-form .pill:hover {
    background: #000;
}
.form-status {
    grid-column: 1/-1;
}
.footer {
    padding-top: 64px;
    padding-bottom: 28px;
    background: #0c0c0c;
    color: #fff;
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.5fr;
    gap: 42px;
}
.footer-brand {
    display: flex;
    gap: 15px;
}
.footer-brand .brand-mark {
    background: #fff;
    color: var(--green);
}
.footer h2 {
    font-size: 46px;
    line-height: 0.95;
}
.footer > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 12px;
}
.footer-bottom {
    grid-column: 1/-1 !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 21px;
    margin-top: 34px;
    opacity: 0.55;
}

@media (max-width: 1180px) {
    .desktop-nav {
        gap: 16px;
        font-size: 12px;
    }
    .header-actions .phone {
        display: none;
    }
    .hero-grid {
        grid-template-columns: 1fr 430px;
        gap: 40px;
    }
    .feature-track {
        grid-template-columns: repeat(2, 1fr);
    }
    .step-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 920px) {
    :root {
        --radius: 18px;
    }
    .desktop-nav,
    .header-actions {
        display: none;
    }
    .menu-button {
        display: block;
    }
    .site-header {
        height: 66px;
    }
    .mobile-menu {
        top: 72px;
    }
    .hero {
        padding-top: 40px;
    }
    .hero-stats {
        margin-left: 0;
        max-width: 100%;
    }
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-copy {
        max-width: 760px;
    }
    .machine-stage {
        min-height: 520px;
        margin-top: 20px;
    }
    .sun-disc {
        right: 50%;
        transform: translateX(50%);
    }
    .split-heading {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .metric-row {
        margin-top: 46px;
    }
    .calculator,
    .phone-section,
    .about-panel,
    .support-grid,
    .contact {
        grid-template-columns: 1fr;
    }
    .calculator,
    .phone-section,
    .support,
    .contact {
        gap: 48px;
    }
    .profit-card {
        max-width: 680px;
    }
    .about-panel {
        gap: 35px;
    }
    .photo-placeholder {
        min-height: 390px;
    }
    .station-showcase {
        grid-template-columns: 1fr;
    }
    .station-visual {
        min-height: 470px;
    }
    .step-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .story-card {
        min-width: calc((100% - 16px) / 2);
    }
}

@media (max-width: 640px) {
    :root {
        --pad: 18px;
        --radius: 16px;
    }
    html {
        scroll-padding-top: 72px;
    }
    .site-header {
        padding: 0 18px;
    }
    .brand-mark {
        width: 36px;
        height: 36px;
    }
    .mobile-menu {
        left: 10px;
        right: 10px;
        top: 72px;
    }
    h1 {
        font-size: clamp(2.55rem, 12vw, 3.9rem);
        line-height: 1.03;
    }
    h2 {
        font-size: clamp(2.1rem, 9vw, 3rem);
        line-height: 1.06;
    }
    .hero {
        padding-top: 30px;
        padding-bottom: 62px;
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 34px;
    }
    .hero-stats strong {
        font-size: 24px;
    }
    .lead {
        font-size: 16px;
    }
    .machine-stage {
        min-height: 455px;
    }
    .sun-disc {
        width: 340px;
        height: 340px;
    }
    .machine {
        width: 232px;
        height: 395px;
        padding: 19px;
    }
    .machine:after {
        right: -27px;
        width: 27px;
    }
    .machine-sign {
        font-size: 23px;
    }
    .machine-screen {
        top: 68px;
        width: 75px;
        height: 120px;
        font-size: 13px;
    }
    .coffee-unit {
        left: 18px;
        right: 18px;
        top: 207px;
        height: 82px;
        padding: 12px;
    }
    .machine-base {
        left: 19px;
        right: 19px;
        font-size: 8px;
    }
    .machine-base b {
        font-size: 32px;
    }
    .price-tag {
        width: 110px;
        height: 110px;
        right: 4px;
        top: 130px;
    }
    .price-tag strong {
        font-size: 18px;
    }
    .statement,
    .features,
    .calculator,
    .phone-section,
    .about,
    .station,
    .comparison,
    .steps,
    .support,
    .locations,
    .stories,
    .faq,
    .contact {
        padding-top: 68px;
        padding-bottom: 68px;
    }
    .metric-row {
        grid-template-columns: 1fr 1fr;
    }
    .metric-row article {
        min-height: 145px;
        padding: 20px 16px;
    }
    .metric-row strong {
        font-size: 34px;
    }
    .feature-track {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 36px;
    }
    .feature-card {
        min-height: 260px;
    }
    .feature-icon {
        height: 95px;
    }
    .calculator {
        gap: 38px;
    }
    .range-label {
        margin-top: 36px;
    }
    .range-label strong {
        font-size: 44px;
    }
    .profit-card {
        grid-template-columns: 1fr;
        padding: 24px;
    }
    .donut {
        margin: auto;
    }
    .phone-section {
        gap: 56px;
    }
    .phone-shell {
        width: 235px;
        height: 485px;
    }
    .phone-mockup:before {
        width: 340px;
        height: 340px;
    }
    .benefit-list {
        margin-top: 34px;
    }
    .benefit-list article {
        grid-template-columns: 78px 1fr;
    }
    .about-tabs {
        gap: 19px;
        overflow-x: auto;
    }
    .photo-placeholder {
        min-height: 300px;
    }
    .abstract-cup {
        font-size: 90px;
    }
    .about-panel h3 {
        font-size: 30px;
    }
    .station-top,
    .stories-top {
        align-items: flex-start;
        flex-direction: column;
    }
    .station-showcase {
        margin-top: 36px;
    }
    .station-visual {
        min-height: 395px;
    }
    .mini-station {
        width: 220px;
        height: 345px;
        padding: 18px;
    }
    .mini-station > div {
        font-size: 25px;
    }
    .mini-station > span {
        height: 142px;
        margin-top: 50px;
    }
    .equipment {
        padding: 24px;
    }
    .equipment ul {
        columns: 1;
    }
    .station-price {
        margin-top: 34px;
    }
    .station-price strong {
        font-size: 39px;
    }
    .compare-table {
        overflow-x: auto;
    }
    .compare-table > div {
        min-width: 590px;
    }
    .compare-table {
        margin-top: 36px;
    }
    .step-list {
        grid-template-columns: 1fr;
        margin-top: 36px;
    }
    .step-list article {
        min-height: 220px;
    }
    .support-grid {
        gap: 42px;
    }
    .accordion button {
        font-size: 17px;
        grid-template-columns: 38px 1fr auto;
    }
    .accordion article.open > div p {
        padding-left: 38px;
    }
    .location-tags {
        margin-top: 36px;
    }
    .location-metrics {
        grid-template-columns: 1fr;
        margin-top: 42px;
    }
    .location-metrics article {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }
    .location-metrics article:last-child {
        border-bottom: 0;
    }
    .story-window {
        margin-top: 36px;
    }
    .story-card {
        min-width: 88%;
    }
    .video-placeholder {
        height: 270px;
    }
    .faq-list {
        margin-top: 36px;
    }
    .contact-form {
        grid-template-columns: 1fr;
    }
    .contact-form .consent {
        grid-column: 1;
    }
    .contact {
        gap: 42px;
    }
    .footer {
        grid-template-columns: 1fr 1fr;
        padding-top: 52px;
    }
    .footer-brand {
        grid-column: 1/-1;
    }
    .footer h2 {
        font-size: 40px;
    }
    .footer-bottom {
        grid-column: 1/-1 !important;
        flex-direction: column !important;
        gap: 8px;
    }
}

@media (min-width: 921px) {
    .mobile-menu {
        display: none !important;
    }
}
@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
.photo-placeholder {
    overflow: hidden;
    transition: background-color 0.35s ease;
}

.abstract-cup {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abstract-cup img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.step-number {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #2E5A7A;

    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: block;
}