:root {
  --bg: #020a10;
  --bg-2: #061520;
  --panel: rgba(7, 19, 27, 0.82);
  --panel-strong: rgba(10, 24, 33, 0.94);
  --gold: #ffc400;
  --gold-2: #ff9f00;
  --gold-soft: rgba(255, 196, 0, 0.16);
  --text: #f7fbff;
  --muted: #a9b6c2;
  --faint: #6f8190;
  --line: rgba(255, 196, 0, 0.28);
  --line-cool: rgba(173, 208, 232, 0.16);
  --teal: #51e3d4;
  --danger: #ff4d42;
  --shadow: 0 0 42px rgba(255, 180, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 4%, rgba(255, 196, 0, 0.08), transparent 25rem),
    radial-gradient(circle at 75% 20%, rgba(26, 106, 144, 0.18), transparent 28rem),
    linear-gradient(180deg, #02080e 0%, #06131d 48%, #02080e 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-shell {
  position: relative;
  min-height: 100vh;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 16px max(24px, calc((100vw - 1260px) / 2));
  border-bottom: 1px solid var(--line-cool);
  background: rgba(2, 8, 14, 0.82);
  backdrop-filter: blur(18px);
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(2, 8, 14, 0.94);
  border-bottom-color: rgba(255, 196, 0, 0.32);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.45);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: block;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border-radius: 10px;
  filter: drop-shadow(0 0 16px rgba(255, 196, 0, 0.8));
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: screen;
}

.brand-text {
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: 0.005em;
  background: linear-gradient(90deg, #ffe27a 0%, var(--gold) 55%, #ffac00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav {
  display: flex;
  align-items: center;
  gap: 44px;
  color: #e5edf3;
  font-size: 0.88rem;
  font-weight: 700;
}

.nav a,
.site-footer a {
  transition: color 180ms ease;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--gold);
}

.header-cta {
  border: 1px solid rgba(255, 196, 0, 0.72);
  border-radius: 8px;
  padding: 15px 25px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: inset 0 0 18px rgba(255, 196, 0, 0.09), 0 0 24px rgba(255, 196, 0, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.hero,
.section {
  width: min(1260px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(580px, 1.08fr);
  gap: 48px;
  align-items: center;
  padding: 64px 0 56px;
  isolation: isolate;
}

.hero-watermark {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  overflow: hidden;
}

.hero-watermark img {
  width: min(820px, 78vw);
  max-width: none;
  opacity: 0.07;
  filter: drop-shadow(0 0 60px rgba(255, 196, 0, 0.55));
  mix-blend-mode: screen;
  transform: translate(8%, 4%) scale(1.05);
}

.hero-watermark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 40%, rgba(255, 196, 0, 0.18), transparent 22rem);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  color: var(--text);
  font-size: 3.95rem;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.012em;
  text-shadow: 0 0 28px rgba(255, 196, 0, 0.06);
}

h1 span,
h2 span,
.case-copy h2 span {
  color: var(--gold);
  text-shadow: 0 0 22px rgba(255, 196, 0, 0.45);
}

.desktop-headline {
  color: inherit;
}

.mobile-headline {
  display: none;
  color: inherit;
}

h2 {
  margin-bottom: 0;
  color: var(--text);
  font-size: 2.36rem;
  line-height: 1.22;
  letter-spacing: 0;
}

h3 {
  color: var(--text);
  font-size: 1.18rem;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 34px;
  color: #c5d1db;
  font-size: 1.03rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 30px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button-primary {
  color: #10130d;
  background: linear-gradient(180deg, #ffe27a 0%, var(--gold) 45%, #ffac00 100%);
  box-shadow: 0 0 38px rgba(255, 196, 0, 0.55), 0 6px 22px rgba(255, 140, 0, 0.28);
}

.button-primary:hover {
  box-shadow: 0 0 48px rgba(255, 196, 0, 0.72), 0 8px 26px rgba(255, 140, 0, 0.38);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(255, 196, 0, 0.42);
  background: rgba(255, 196, 0, 0.04);
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-row span {
  border: 1px solid rgba(255, 196, 0, 0.42);
  border-radius: 7px;
  padding: 10px 13px;
  color: #f3eccb;
  background: linear-gradient(180deg, rgba(255, 196, 0, 0.1), rgba(4, 13, 20, 0.78));
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: inset 0 0 14px rgba(255, 196, 0, 0.08);
}

.proof-row span::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 7px;
  vertical-align: -2px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(255, 196, 0, 0.45);
}

.automation-flow {
  position: relative;
  z-index: 2;
  display: block;
  min-width: 0;
}

.automation-image {
  display: block;
  width: min(100%, 760px);
  margin-left: auto;
  filter: drop-shadow(0 0 34px rgba(255, 196, 0, 0.22));
}

.section {
  padding: 62px 0;
}

.centered {
  max-width: 870px;
  margin: 0 auto 34px;
  text-align: center;
}

.split-panel,
.case-panel,
.contact-panel {
  border: 1px solid var(--line-cool);
  border-radius: 14px;
  background: rgba(5, 15, 22, 0.72);
  box-shadow: inset 0 0 28px rgba(255, 196, 0, 0.035);
}

.split-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.split-panel > div {
  padding: 34px 42px;
}

.split-panel > div + div {
  border-left: 1px solid var(--line-cool);
}

.split-panel h3,
.case-copy h2,
.contact-copy h2 {
  margin-bottom: 24px;
}

.split-panel > div:nth-child(2) h3 {
  color: var(--gold);
}

.check-list,
.x-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.x-list li {
  position: relative;
  padding-left: 33px;
  color: #d5e0e8;
  font-size: 0.94rem;
  line-height: 1.55;
}

.check-list li::before,
.x-list li::before {
  position: absolute;
  left: 0;
  top: 0.12rem;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 0 12px rgba(255, 196, 0, 0.22);
}

.check-list li::before {
  content: "";
  background: radial-gradient(circle at 50% 50%, var(--gold) 0 3px, transparent 4px);
}

.x-list li::before {
  content: "x";
}

.package-wrap {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 18px;
  align-items: center;
}

.circle-control {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 196, 0, 0.55);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 196, 0, 0.05);
  cursor: default;
  font-weight: 900;
}

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

.price-card {
  min-height: 382px;
  border: 1px solid var(--line-cool);
  border-radius: 12px;
  padding: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}

.price-card.featured {
  border-color: rgba(255, 196, 0, 0.75);
  box-shadow: 0 0 38px rgba(255, 196, 0, 0.26), inset 0 0 25px rgba(255, 196, 0, 0.05);
}

.tier,
.tier-line span {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tier-line {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.tier-line span {
  border: 1px solid rgba(255, 196, 0, 0.72);
  border-radius: 7px;
  padding: 9px 11px;
  letter-spacing: 0;
  text-transform: none;
}

.price-card h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.8rem;
}

.monthly {
  margin-bottom: 26px;
  color: var(--teal);
  font-weight: 900;
}

.price-card p:not(.tier, .monthly) {
  color: #becbd5;
  line-height: 1.65;
}

.pager {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.pager span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
}

.pager span:first-child {
  background: var(--gold);
}

.case-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 22px;
  padding: 36px 36px;
  align-items: stretch;
  border-color: rgba(255, 196, 0, 0.42);
  box-shadow: inset 0 0 34px rgba(255, 196, 0, 0.035);
}

.case-copy p {
  color: #c7d2db;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  margin-top: 15px;
  border: 1px solid rgba(255, 196, 0, 0.48);
  border-radius: 7px;
  padding: 13px 22px;
  color: var(--gold);
  font-weight: 900;
}

.coffee-visual {
  position: relative;
  overflow: hidden;
  min-height: 335px;
  margin: -8px -8px -18px -16px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 54% 48%, rgba(255, 196, 0, 0.12), transparent 13rem),
    linear-gradient(90deg, rgba(3, 10, 15, 0.68), transparent 25%),
    url("assets/coffee-case-bg.png") center / cover;
  isolation: isolate;
}

.coffee-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(3, 10, 15, 0.08), rgba(3, 10, 15, 0.2));
}

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

.metric-board article {
  min-height: 172px;
  border: 1px solid rgba(255, 196, 0, 0.46);
  border-radius: 12px;
  padding: 26px 28px;
  background: radial-gradient(circle at 30% 20%, rgba(255, 196, 0, 0.08), transparent 8rem), rgba(255, 255, 255, 0.025);
}

.metric-board strong {
  display: block;
  margin: 20px 0 10px;
  color: var(--gold);
  font-size: 1.42rem;
}

.metric-board p {
  margin: 0;
  color: #c3cfd8;
  font-size: 1rem;
}

.metric-icon,
.contact-benefits span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 196, 0, 0.52);
  border-radius: 50%;
  color: var(--gold);
  box-shadow: 0 0 18px rgba(255, 196, 0, 0.18);
}

.metric-icon::before,
.contact-benefits span::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 4px;
}

.metric-icon.call::before {
  width: 18px;
  height: 30px;
  border-width: 7px;
  border-top: 0;
  border-right: 0;
  border-radius: 4px 0 0 13px;
  transform: rotate(-42deg);
}

.metric-icon.cart::before {
  width: 24px;
  height: 17px;
  border-width: 4px;
  border-top: 0;
  border-radius: 2px 2px 4px 4px;
}

.metric-icon.team::before {
  width: 25px;
  height: 16px;
  border-width: 4px;
  border-radius: 50% 50% 3px 3px;
}

.metric-icon.bars::before {
  width: 25px;
  height: 28px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, currentColor 0 6px, transparent 6px 10px, currentColor 10px 16px, transparent 16px 20px, currentColor 20px 26px);
}

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

.validation-grid article {
  min-height: 288px;
  border: 1px solid rgba(255, 196, 0, 0.46);
  border-radius: 12px;
  padding: 36px 34px 28px;
  text-align: center;
  background: radial-gradient(circle at 50% 110%, rgba(255, 196, 0, 0.2), transparent 7rem), rgba(5, 15, 22, 0.75);
  box-shadow: inset 0 -16px 32px rgba(255, 196, 0, 0.05);
}

.stat {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 26px rgba(255, 196, 0, 0.6);
}

.validation-grid p {
  color: #d7e2ea;
  line-height: 1.58;
}

.validation-grid small {
  color: var(--muted);
}

.vision {
  display: grid;
  grid-template-columns: 48px 1fr 2px 1fr;
  gap: 45px;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 64px max(24px, calc((100vw - 1260px) / 2));
  border-top: 1px solid var(--line-cool);
  border-bottom: 1px solid var(--line-cool);
  background: rgba(0, 0, 0, 0.18);
}

.spark {
  width: 42px;
  height: 42px;
  border: 3px solid var(--gold);
  transform: rotate(45deg);
  filter: drop-shadow(0 0 16px rgba(255, 196, 0, 0.65));
}

.vertical-light {
  width: 2px;
  height: 150px;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(255, 196, 0, 0.92);
}

.vision p:last-child {
  margin: 0;
  color: #b8c5cf;
  font-size: 1.02rem;
  line-height: 1.85;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
  gap: 42px;
  padding: 32px 34px;
  border-color: rgba(255, 196, 0, 0.42);
}

.contact-copy p {
  color: #c5d1db;
  line-height: 1.68;
}

.contact-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.contact-benefits article {
  text-align: center;
}

.contact-benefits span {
  margin: 0 auto 12px;
  width: 58px;
  height: 58px;
}

.contact-benefits strong {
  display: block;
  color: var(--text);
}

.contact-benefits p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.lead-form {
  display: grid;
  gap: 13px;
  border: 1px solid var(--line-cool);
  border-radius: 12px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.22);
}

label {
  display: grid;
  gap: 8px;
  color: #eaf2f8;
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 7px;
  padding: 0 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

textarea {
  min-height: 96px;
  padding-top: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(255, 196, 0, 0.18);
  border-color: rgba(255, 196, 0, 0.64);
}

select option {
  color: #101820;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
  text-align: center;
}

.form-note.success {
  color: var(--teal);
}

.form-note.error {
  color: #ff8f84;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(1260px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 36px;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  line-height: 1.5;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: #d7e0e7;
  font-size: 0.86rem;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-watermark img {
    width: min(720px, 88vw);
    transform: translate(0, 6%) scale(1);
  }

  .automation-image {
    margin: 0 auto;
  }

  .case-panel {
    grid-template-columns: 1fr 1fr;
  }

  .coffee-visual {
    margin: 0;
  }

  .metric-board {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    flex-wrap: wrap;
    padding-block: 12px;
  }

  .nav {
    order: 3;
    width: 100%;
    gap: 22px;
    padding-bottom: 2px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .automation-flow,
  .split-panel,
  .pricing-grid,
  .case-panel,
  .validation-grid,
  .vision,
  .contact-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .circle-control,
  .hero::after,
  .vertical-light {
    display: none;
  }

  .package-wrap {
    grid-template-columns: 1fr;
  }

  .split-panel > div + div {
    border-top: 1px solid var(--line-cool);
    border-left: 0;
  }

  .vision {
    gap: 24px;
    width: 100%;
  }
}

@media (max-width: 620px) {
  .hero,
  .section,
  .site-footer {
    width: auto;
    margin-left: 16px;
    margin-right: 16px;
  }

  .site-header {
    padding-inline: 16px;
    gap: 14px;
  }

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

  .brand-text {
    font-size: 1.05rem;
  }

  .header-cta {
    display: none;
  }

  .hero-watermark img {
    width: 96vw;
    opacity: 0.05;
    transform: translate(0, 10%) scale(1);
  }

  h1 {
    font-size: 2.05rem;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 1.62rem;
    line-height: 1.22;
    overflow-wrap: anywhere;
  }

  .centered h2 br,
  .case-copy h2 br,
  .contact-copy h2 br,
  .vision h2 br {
    display: none;
  }

  .desktop-headline {
    display: none;
  }

  .mobile-headline {
    display: inline;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-copy,
  .automation-flow,
  .flow-card,
  .hero-lede,
  .hero-actions,
  .proof-row {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .centered {
    width: 100%;
    max-width: 320px;
  }

  .centered h2 {
    max-width: 320px;
  }

  .automation-image {
    width: 92%;
    max-width: 92%;
    margin: 0 auto;
  }

  .hero-lede {
    font-size: 0.96rem;
  }

  .hero-actions,
  .proof-row,
  .contact-benefits,
  .metric-board {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .flow-card {
    min-height: auto;
  }

  .split-panel > div,
  .case-panel,
  .contact-panel,
  .lead-form {
    padding: 22px;
  }

  .stat {
    font-size: 3.8rem;
  }
}
