:root {
  --nb-orange: #ff5f00;
  --nb-orange-deep: #d44a00;
  --nb-beige: #f8dfbb;
  --nb-cream: #fff7ef;
  --nb-black: #090909;
  --nb-white: #ffffff;
  --nb-sand: #efe0cc;

  --color-ink: #111111;
  --color-ink-2: #262626;
  --color-paper: #fffdf8;
  --color-paper-2: #fff4e7;
  --color-muted: rgba(17, 17, 17, 0.72);
  --color-muted-inverse: rgba(255, 255, 255, 0.72);
  --color-border: rgba(17, 17, 17, 0.14);
  --color-border-2: rgba(17, 17, 17, 0.08);
  --color-accent: var(--nb-orange);
  --color-accent-strong: #ff7b2f;
  --color-accent-ink: var(--nb-black);
  --color-danger: #9d1b00;
  --color-success: #0f6b43;

  --header-bg: rgba(9, 9, 9, 0.92);
  --header-ink: rgba(248, 223, 187, 0.95);
  --header-ink-muted: rgba(248, 223, 187, 0.76);
  --header-border: rgba(255, 255, 255, 0.12);

  --font-display: "Climate Crisis", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-sans: "Outfit", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 10px 24px rgba(17, 17, 17, 0.06);
  --shadow-md: 0 18px 42px rgba(17, 17, 17, 0.1);
  --shadow-lg: 0 26px 70px rgba(17, 17, 17, 0.16);
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background:
    radial-gradient(circle at top left, rgba(255, 95, 0, 0.08), transparent 24rem),
    linear-gradient(180deg, #fffaf4 0%, #fffdf8 32%, #fff9f1 100%);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-size: 18px;
}

.bg-grid {
  background-size:
    auto,
    100% 100%;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    radial-gradient(circle at top left, rgba(255, 95, 0, 0.06), transparent 22rem),
    linear-gradient(180deg, #fffaf4 0%, #fffdf8 32%, #fff9f1 100%);
  background-position:
    0 0,
    0 0,
    0 0,
    0 0;
  background-size:
    28px 28px,
    28px 28px,
    auto,
    auto;
}

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

a:hover {
  text-decoration: underline;
}

.coffee-lead a,
.bullets a,
.fine a,
.faq-body a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
  font-weight: 800;
}

.coffee-lead a:hover,
.bullets a:hover,
.fine a:hover,
.faq-body a:hover {
  text-decoration-thickness: 3px;
}

h2,
h3,
.brand,
.nav,
.btn,
.eyebrow,
.price-tag,
.price-badge {
  font-family: var(--font-sans);
}

.climate-accent {
  font-family: var(--font-display);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.glass-panel {
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--header-border);
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-logo {
  height: 76px;
  width: auto;
  display: block;
}

.brand-pill {
  font-size: 11px;
  color: var(--header-ink);
  border: 1px solid rgba(248, 223, 187, 0.24);
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(248, 223, 187, 0.1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav a:not(.btn) {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--nb-white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

.nav a:not(.btn):hover {
  background: rgba(248, 223, 187, 0.12);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--nb-orange) 0%, var(--color-accent-strong) 100%);
  color: var(--color-accent-ink);
  border-color: rgba(17, 17, 17, 0.14);
  box-shadow: 0 16px 28px rgba(255, 95, 0, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-accent-strong) 0%, #ff934f 100%);
  color: var(--color-accent-ink);
  border-color: rgba(17, 17, 17, 0.18);
  box-shadow: 0 18px 30px rgba(255, 95, 0, 0.26);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(17, 17, 17, 0.16);
  color: var(--color-ink);
  box-shadow: 0 10px 20px rgba(17, 17, 17, 0.06);
}

.btn-ghost:hover {
  background: #ffffff;
  border-color: rgba(17, 17, 17, 0.22);
  color: var(--color-ink);
  box-shadow: 0 14px 24px rgba(17, 17, 17, 0.08);
}

.btn-primary,
.btn-primary:visited,
.btn-primary:hover,
.btn-primary:focus-visible {
  color: var(--color-accent-ink);
}

.btn-ghost,
.btn-ghost:visited,
.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--color-ink);
}

.btn-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

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

.hero-sales {
  position: relative;
}

.hero-sales::before {
  content: "";
  position: absolute;
  inset: 24px 0 auto;
  height: 28rem;
  background:
    linear-gradient(rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    #fffaf4;
  background-size:
    28px 28px,
    28px 28px,
    auto;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.78fr);
  gap: 36px;
  align-items: stretch;
}

.hero-copy {
  position: relative;
  color: var(--color-ink);
  padding: 52px clamp(28px, 4vw, 52px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 28px 64px rgba(17, 17, 17, 0.08);
  overflow: hidden;
  height: 100%;
}

.hero-copy::after {
  content: none;
}

.eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: rgba(17, 17, 17, 0.56);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
}

h1 {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.8vw, 3.85rem);
  line-height: 1.08;
  letter-spacing: 0.04em;
  font-weight: 400;
  max-width: 12ch;
  text-wrap: balance;
}

.lead {
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(17, 17, 17, 0.74);
  max-width: 42rem;
}

.fine {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.hero .fine {
  position: relative;
  z-index: 1;
  color: rgba(17, 17, 17, 0.62);
  max-width: 46rem;
}

.cta-row,
.cta-inline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-row {
  margin-top: 24px;
}

.hero-media {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-self: stretch;
  height: 100%;
  min-height: 100%;
}

.hero-shot {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.1);
  min-height: 0;
  height: 100%;
  contain: layout paint;
}

.hero-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f8dfbb;
}

.value-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.value {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.06);
}

.value .k {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(17, 17, 17, 0.52);
  font-weight: 800;
}

.value .v {
  display: block;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 8px;
  color: var(--color-ink);
}

.section {
  padding: 92px 0;
}

.section-compact {
  padding-top: 32px;
  padding-bottom: 32px;
}

.section-band {
  position: relative;
  overflow: hidden;
}

.section-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280' viewBox='0 0 280 280'%3E%3Cg fill='none' stroke='%23000000' stroke-width='1.6' stroke-linecap='round' opacity='0.55'%3E%3Cellipse cx='54' cy='60' rx='22' ry='14' transform='rotate(-18 54 60)'/%3E%3Cpath d='M48 48c10 8 12 18 4 28'/%3E%3Cellipse cx='198' cy='74' rx='19' ry='12' transform='rotate(24 198 74)'/%3E%3Cpath d='M202 61c-8 7-10 16-3 24'/%3E%3Cellipse cx='108' cy='168' rx='23' ry='15' transform='rotate(14 108 168)'/%3E%3Cpath d='M101 154c11 9 12 20 4 31'/%3E%3Cellipse cx='224' cy='206' rx='20' ry='13' transform='rotate(-22 224 206)'/%3E%3Cpath d='M219 194c9 7 11 16 4 25'/%3E%3Cellipse cx='34' cy='220' rx='18' ry='11' transform='rotate(18 34 220)'/%3E%3Cpath d='M30 210c8 7 9 14 3 21'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 260px 260px;
}

.section-band > .container {
  position: relative;
  z-index: 1;
}

.section-band-steps::before {
  filter: invert(1);
  opacity: 0.06;
}

.section-band-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 244, 231, 0.92) 100%);
}

.section-band-soft {
  background: linear-gradient(180deg, rgba(255, 236, 216, 0.5) 0%, rgba(255, 247, 239, 0.96) 100%);
}

.section-band-contrast {
  background:
    linear-gradient(rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    #fffaf4;
  background-size:
    28px 28px,
    28px 28px,
    auto;
}

.section-band-calculator {
  color: var(--nb-white);
  background: #000000;
}

.section-band-steps {
  color: var(--nb-white);
  background: #000000;
}

.section-band-fit {
  color: var(--nb-black);
  background:
    linear-gradient(rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    #fffaf4;
  background-size:
    28px 28px,
    28px 28px,
    auto;
}

.section-band-ink {
  color: var(--color-ink);
  background:
    linear-gradient(rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    #fffaf4;
  background-size:
    28px 28px,
    28px 28px,
    auto;
}

.section-band-pricing {
  color: var(--nb-white);
  background: #ff5f00;
}

.section-band-pricing .price-card,
.section-band-pricing .contact-card {
  color: var(--color-ink);
}

.section-band-pricing .contact-card .muted {
  color: var(--color-ink);
}

.section-band-calculator .section-head p,
.section-band-calculator .muted,
.section-band-calculator .fine,
.section-band-calculator .faq-body,
.section-band-calculator .faq-body p {
  color: rgba(255, 255, 255, 0.76);
}

.section-band-calculator .section-head h2,
.section-band-calculator .card h3,
.section-band-calculator .calc-field label {
  color: var(--nb-white);
}

.section-band-steps .section-head h2,
.section-band-steps .section-head p,
.section-band-steps .muted,
.section-band-steps .fine,
.section-band-steps .card h3,
.section-band-steps .steps,
.section-band-steps .steps strong {
  color: var(--nb-white);
}

.section-band-fit .section-head p,
.section-band-pricing .section-head p,
.section-band-pricing .muted,
.section-band-pricing .fine {
  color: rgba(255, 255, 255, 0.82);
}

.section-band-ink .section-head p,
.section-band-ink .muted,
.section-band-ink .fine,
.section-band-ink .faq-body,
.section-band-ink .faq-body p {
  color: var(--color-muted);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1;
  font-weight: 800;
  text-wrap: balance;
}

.section-head p {
  margin: 0;
  color: var(--color-muted);
  max-width: 32rem;
}

.card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-border);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(17, 17, 17, 0.08);
}

.section-band-calculator .card {
  background: transparent;
  border-color: transparent;
  color: var(--nb-white);
  box-shadow: none;
  padding: 0;
}

.section-band-steps .card {
  background: transparent;
  border: 0;
  color: var(--nb-white);
  box-shadow: none;
  padding: 0;
}

.section-band-fit .card {
  background: rgba(255, 255, 255, 0.9);
  color: var(--nb-black);
  box-shadow: 0 20px 40px rgba(17, 17, 17, 0.06);
  border: 1px solid rgba(17, 17, 17, 0.08);
  padding: 24px;
}

.section-band-ink .card {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(17, 17, 17, 0.1);
  color: var(--color-ink);
  box-shadow: var(--shadow-md);
}

.card-facts {
  border: 1px solid rgba(255, 95, 0, 0.2);
  background:
    linear-gradient(90deg, rgba(255, 95, 0, 0.12) 0 8px, transparent 8px 100%),
    rgba(255, 255, 255, 0.96);
}

.card-problem {
  border-top: 4px solid rgba(17, 17, 17, 0.9);
}

.card-effect {
  border-top: 4px solid var(--color-success);
  background:
    linear-gradient(180deg, rgba(15, 107, 67, 0.05), transparent 100%),
    rgba(255, 255, 255, 0.96);
}

.card-tool {
  background: transparent;
}

.card-material {
  background:
    linear-gradient(180deg, rgba(255, 95, 0, 0.08), transparent 100%),
    rgba(255, 255, 255, 0.94);
}

.card-deliverables {
  border: 1px solid rgba(255, 95, 0, 0.18);
}

.coffee-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.coffee-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 239, 0.94));
  border: 1px solid rgba(17, 17, 17, 0.1);
}

.coffee-card-featured {
  background:
    linear-gradient(180deg, rgba(255, 95, 0, 0.1), rgba(255, 255, 255, 0.96));
  border-color: rgba(255, 95, 0, 0.28);
}

.coffee-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.coffee-badge,
.coffee-format {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.coffee-badge {
  background: rgba(17, 17, 17, 0.06);
  color: rgba(17, 17, 17, 0.7);
}

.coffee-card-featured .coffee-badge {
  background: rgba(255, 95, 0, 0.16);
  color: rgba(17, 17, 17, 0.84);
}

.coffee-format {
  border: 1px solid rgba(17, 17, 17, 0.08);
  color: rgba(17, 17, 17, 0.56);
  background: rgba(255, 255, 255, 0.72);
}

.coffee-lead {
  margin: -4px 0 0;
  color: rgba(17, 17, 17, 0.78);
  font-size: 1rem;
}

.consulting-block {
  margin-top: 28px;
}

.consulting-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 95, 0, 0.08) 0%, rgba(255, 255, 255, 0.96) 36%, rgba(248, 223, 187, 0.28) 100%);
}

.consulting-card h3 {
  margin: 6px 0 0;
}

.consulting-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(17, 17, 17, 0.56);
  font-weight: 800;
}

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

.consulting-slot {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.consulting-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(17, 17, 17, 0.5);
  font-weight: 800;
}

.consulting-value {
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.card-steps {
  border-left: 4px solid rgba(248, 223, 187, 0.5);
  padding-left: 24px;
}

.card-fit {
  border-top: 4px solid #000000;
  position: relative;
}

.card-no-fit {
  border-top: 4px solid #ff5f00;
  position: relative;
}

.card-fit::after,
.card-no-fit::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.14;
}

.card-fit::after {
  color: #000000;
}

.card-no-fit::after {
  color: #ff5f00;
}

.card h3 {
  margin: 0 0 14px;
  letter-spacing: -0.03em;
  font-size: 1.5rem;
  line-height: 1.08;
  font-weight: 800;
}

.hero-card h2 {
  margin: 0 0 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(17, 17, 17, 0.64);
}

.section-band-calculator .hero-card h2 {
  color: rgba(17, 17, 17, 0.62);
}

.section-band-ink .hero-card h2 {
  color: rgba(17, 17, 17, 0.62);
}

.bullets {
  margin: 0;
  padding-left: 18px;
}

.bullets li {
  margin: 12px 0;
}

.bullets-tight li {
  margin: 10px 0;
}

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

.two-col > .card {
  grid-column: span 6;
}

.section-band-fit .two-col {
  gap: 18px;
}

.steps {
  margin: 0;
  padding-left: 22px;
}

.steps li {
  margin: 16px 0;
}

.calc {
  margin: 0;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: start;
}

.calc-fields {
  display: grid;
  gap: 20px;
}

.calc-field label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.calc-field {
  position: relative;
  padding: 22px 22px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.calc-controls {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 12px;
  align-items: center;
}

.calc-controls input[type="range"] {
  width: 100%;
  accent-color: var(--color-accent);
}

.calc-controls input[type="number"] {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  background: rgba(248, 223, 187, 0.14);
  color: var(--nb-white);
}

.calc-output {
  padding-left: 12px;
}

.calc-kpis {
  display: grid;
  gap: 14px;
}

.kpi {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 22px;
  background: #f8dfbb;
  box-shadow: none;
}

.kpi-k {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: rgba(17, 17, 17, 0.56);
}

.kpi-v {
  font-family: var(--font-sans);
  margin-top: 8px;
  font-weight: 700;
  letter-spacing: -0.05em;
  font-size: clamp(2rem, 4vw, 3.15rem);
  color: #ff5f00;
}

.kpi-v.is-negative {
  color: #ff9f86;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  background: #f8dfbb;
  border: 1px solid rgba(17, 17, 17, 0.16);
  box-shadow: none;
  border-radius: 28px;
}

.price-card-featured {
  position: relative;
  background: #000000;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.price {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.price-badge {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
}

.price-card-featured .price-badge {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.price-card-featured .price-tag {
  color: #ffffff;
}

.price-tag {
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.92;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.price-sub {
  color: var(--color-muted);
  max-width: 22rem;
}

.price-card-featured .price-sub,
.price-card-featured .bullets,
.price-card-featured .bullets li {
  color: rgba(255, 255, 255, 0.9);
}

.price-card-featured .btn-primary,
.price-card-featured .btn-primary:hover,
.price-card-featured .btn-primary:visited {
  color: var(--color-accent-ink);
}

.price-card-featured .btn-ghost,
.price-card-featured .btn-ghost:hover,
.price-card-featured .btn-ghost:visited {
  color: var(--color-ink);
}

.price-card .bullets {
  flex: 1 1 auto;
}

.price-card .cta-inline {
  margin-top: auto;
  width: 100%;
}

.price-card .cta-inline .btn {
  width: 100%;
  min-height: 58px;
  padding: 18px 24px;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.contact-card {
  margin-top: 28px;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.03), transparent 100%),
    rgba(255, 255, 255, 0.96);
}

.contact-form {
  margin-top: 18px;
  display: grid;
  gap: 16px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--color-ink);
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.calc-controls input[type="number"]:focus {
  outline: 2px solid rgba(255, 95, 0, 0.28);
  outline-offset: 2px;
  border-color: rgba(255, 95, 0, 0.38);
}

.contact-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 244, 231, 0.72);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.contact-consent input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--color-accent);
}

.contact-consent span {
  color: rgba(17, 17, 17, 0.84);
  line-height: 1.45;
}

.contact-consent a {
  text-decoration: underline;
}

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

.faq {
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.86);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  letter-spacing: -0.03em;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  color: var(--color-ink);
}

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

.faq summary::after {
  content: "+";
  font-weight: 700;
  color: rgba(17, 17, 17, 0.42);
}

.faq[open] summary::after {
  content: "–";
}

.faq-body {
  margin-top: 16px;
}

.faq-body p,
.faq-body ul {
  margin: 0;
}

.footer {
  padding: 28px 0 82px;
  color: var(--color-muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.muted {
  color: var(--color-muted);
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(9, 9, 9, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 20;
}

.mobile-cta .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--nb-white);
  box-shadow: none;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 88px;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 44px rgba(17, 17, 17, 0.14);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__copy {
  max-width: 56rem;
  font-size: 14px;
  color: var(--color-ink);
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}

.cookie-banner__button {
  flex: 0 0 auto;
  min-width: 148px;
}

@media (max-width: 980px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 22px 0 28px;
  }

  .nav {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

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

  .nav a:not(.btn) {
    flex: 0 0 auto;
    white-space: nowrap;
    background: rgba(248, 223, 187, 0.08);
    border: 1px solid rgba(248, 223, 187, 0.16);
  }

  .nav .btn {
    flex: 0 0 auto;
    width: auto;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-sales::before {
    height: 56rem;
  }

  .hero-copy {
    padding: 38px 28px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-media {
    margin-top: 4px;
  }

  h1 {
    max-width: none;
  }

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

  .two-col > .card {
    grid-column: span 12;
  }

  .price-grid,
  .coffee-grid,
  .faq-grid,
  .form-row,
  .calc-grid,
  .consulting-grid {
    grid-template-columns: 1fr;
  }

  .price-card-featured {
    transform: none;
  }

  .calc-output {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    padding-top: 22px;
  }

  .mobile-cta {
    display: flex;
  }

  .cookie-banner {
    left: 18px;
    right: 18px;
    bottom: 84px;
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__button {
    flex: 1 1 0;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 17px;
  }

  .header-inner {
    gap: 20px;
    padding: 26px 0 32px;
  }

  .brand-logo {
    height: 82px;
  }

  .brand {
    gap: 14px;
  }

  .brand-pill {
    padding: 9px 13px;
  }

  .section {
    padding: 64px 0;
  }

  .container {
    padding: 0 18px;
  }

  .card,
  .hero-copy {
    border-radius: 18px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-copy {
    padding: 42px 22px;
  }

  .hero-media {
    display: none;
  }

  .nav .btn {
    width: auto;
  }

  .btn {
    width: 100%;
    min-height: 52px;
  }

  .cta-row,
  .cta-inline {
    flex-direction: column;
  }

  .calc-controls {
    grid-template-columns: 1fr;
  }

  .price-tag {
    font-size: 2.55rem;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 82px;
    padding: 16px;
    border-radius: 18px;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner__button {
    width: 100%;
  }
}
