:root {
  --bg: #e8eef1;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #0f2730;
  --text: #10222b;
  --muted: #5d6a72;
  --line: rgba(16, 34, 43, 0.1);
  --primary: #0a7cc2;
  --primary-dark: #075f94;
  --accent: #ff7a1a;
  --accent-soft: rgba(255, 122, 26, 0.12);
  --support: #19a974;
  --shadow: 0 28px 80px rgba(10, 26, 36, 0.14);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(10, 124, 194, 0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(255, 122, 26, 0.14), transparent 28%),
    linear-gradient(180deg, #edf3f6 0%, #e3eaee 100%);
}

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

.site-shell {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.topbar {
  position: sticky;
  top: 10px;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px 20px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-block;
  margin-top: 2px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow,
.section-kicker,
.panel-label,
.result-label,
.product-tag {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--primary);
}

.contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  color: var(--muted);
  font-size: 0.96rem;
}

.contact-block a {
  color: var(--primary);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.01em;
}

.contact-block span {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: right;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-panel-card,
.support-grid article,
.width-card,
.manufacturer-card,
.payment-card,
.calculator-card,
.results-card,
.capacity-card,
.industries-section,
.quote-copy,
.quote-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-copy {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 251, 0.88)),
    linear-gradient(180deg, rgba(10, 124, 194, 0.05), transparent);
}

.hero-copy h1,
.hero-panel-card h2,
.section-heading h2,
.payment-card h3,
.width-card h3,
.manufacturer-card h3,
.capacity-card h3,
.quote-copy h2 {
  margin: 10px 0 16px;
  font-family: "Oswald", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 4.9vw, 4.85rem);
  max-width: none;
  width: 100%;
  margin-bottom: 12px;
}

.hero-text,
.section-heading p,
.support-grid p,
.payment-card p,
.calculator-help,
.result-note,
.manufacturer-card p,
.capacity-card p,
.quote-copy p,
.form-note,
.hero-support-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.hero-actions,
.quote-actions,
.width-card-actions,
.manufacturer-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions,
.quote-actions {
  margin: 20px 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}

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

.button-primary {
  color: #fff;
  background: var(--primary);
}

.button-primary:hover {
  background: var(--primary-dark);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.button-approve {
  color: #fff;
  background: var(--support);
}

.hero-brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-brand-strip span,
.hero-brand-strip a,
.brand-pill,
.capacity-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-brand-strip span,
.hero-brand-strip a {
  background: rgba(10, 124, 194, 0.08);
  border: 1px solid rgba(10, 124, 194, 0.14);
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.hero-brand-strip a:hover,
.hero-brand-strip a:focus-visible {
  transform: translateY(-1px);
  background: rgba(10, 124, 194, 0.14);
  border-color: rgba(10, 124, 194, 0.24);
}

.hero-points,
.info-list,
.width-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 4px;
}

.hero-points li,
.info-list li,
.width-card li {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.hero-points li a {
  display: inline-flex;
  width: 100%;
  color: inherit;
}

.hero-panel {
  display: flex;
}

.hero-panel-card {
  width: 100%;
  padding: 28px;
  color: #f5fbfd;
  background:
    linear-gradient(180deg, rgba(7, 42, 60, 0.96), rgba(15, 39, 48, 0.98)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent);
}

.hero-panel-card h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.panel-label,
.hero-panel-card p {
  color: rgba(245, 251, 253, 0.84);
}

.hero-size-cards {
  display: grid;
  gap: 14px;
  margin: 18px 0;
}

.hero-machine-visual {
  min-height: 250px;
  margin: 18px 0 14px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.22), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-machine-image {
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(4, 15, 24, 0.34));
  width: min(100%, 300px);
  height: 214px;
}

.hero-machine-caption {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
  padding: 0 4px;
}

.hero-machine-caption strong {
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.hero-machine-caption p {
  margin: 0;
  color: rgba(245, 251, 253, 0.8);
  line-height: 1.6;
}

.size-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.size-card strong {
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.hero-support-note {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

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

.section {
  margin-top: 34px;
}

.section-heading {
  margin-bottom: 20px;
}

.section-heading h2,
.quote-copy h2 {
  font-size: clamp(2.4rem, 4vw, 3.7rem);
}

.narrow {
  max-width: 780px;
}

.support-grid,
.width-grid,
.distributor-grid,
.payment-explainer,
.capacity-grid {
  display: grid;
  gap: 20px;
}

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

.support-grid article,
.distributor-card,
.payment-card {
  padding: 24px;
}

.support-grid h3,
.distributor-card h3,
.payment-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

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

.distributor-card,
.email-card,
.distributor-hero,
.positioning-card,
.sequence-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.distributor-card {
  display: grid;
  gap: 10px;
}

.distributor-card p,
.positioning-card p,
.sequence-card p,
.email-card p,
.email-card li,
.distributor-hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.distributor-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.page-shell {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.subpage-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.subpage-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.distributor-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 34px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 250, 0.92)),
    linear-gradient(180deg, rgba(10, 124, 194, 0.06), transparent);
}

.distributor-hero h1,
.positioning-card h2,
.sequence-card h2,
.email-card h3 {
  margin: 10px 0 14px;
  font-family: "Oswald", sans-serif;
  line-height: 0.98;
}

.distributor-hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  max-width: 12ch;
}

.distributor-points,
.email-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.distributor-points li,
.email-card li {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.positioning-card,
.sequence-card,
.email-card {
  padding: 28px;
}

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

.email-grid {
  margin-top: 20px;
}

.email-card pre {
  margin: 14px 0 0;
  padding: 18px;
  border-radius: 18px;
  background: rgba(10, 124, 194, 0.05);
  border: 1px solid rgba(10, 124, 194, 0.1);
  white-space: pre-wrap;
  font: inherit;
  line-height: 1.7;
  color: var(--text);
}

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

.width-card,
.manufacturer-card,
.capacity-card {
  padding: 24px;
  display: grid;
  gap: 16px;
}

.width-card {
  background:
    linear-gradient(145deg, rgba(10, 124, 194, 0.08), rgba(255, 255, 255, 0.95)),
    #fff;
}

.width-card h3,
.manufacturer-card h3,
.capacity-card h3 {
  font-size: 2.3rem;
}

.width-card-header,
.manufacturer-card-top,
.capacity-card-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 14px;
}

.size-badge {
  padding: 10px 14px;
  border-radius: 18px;
  background: var(--accent-soft);
  color: #b4550f;
  font-size: 0.9rem;
  font-weight: 800;
}

.capacity-tags,
.manufacturer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.capacity-tag {
  background: rgba(16, 34, 43, 0.06);
  border: 1px solid rgba(16, 34, 43, 0.08);
}

.brand-pill {
  background: rgba(10, 124, 194, 0.08);
  border: 1px solid rgba(10, 124, 194, 0.14);
}

.payment-explainer {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 20px;
}

.payment-card {
  gap: 14px;
}

.payment-card-lease {
  background:
    linear-gradient(145deg, rgba(255, 122, 26, 0.08), rgba(255, 255, 255, 0.98)),
    #fff;
}

.calculator-layout,
.quote-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
}

.calculator-card,
.results-card,
.quote-copy,
.quote-form {
  padding: 28px;
}

.calculator-card label,
.quote-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.price-input-wrap,
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 34, 43, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.95);
}

.price-input-wrap {
  display: flex;
  align-items: center;
  padding: 0 16px;
  margin-bottom: 14px;
}

.price-input-wrap span {
  color: var(--muted);
  font-weight: 800;
}

.price-input-wrap input {
  width: 100%;
  padding: 18px 10px;
  border: 0;
  outline: none;
  background: transparent;
  font: inherit;
}

.results-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  color: #f7fbfd;
  background: var(--surface-strong);
}

.result-row {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.result-row strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
}

.result-note {
  color: rgba(247, 251, 253, 0.74);
}

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

.capacity-card {
  min-height: 100%;
}

.capacity-card p {
  min-height: 132px;
}

.repository-note {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.repository-note p:last-child {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.75;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.filter-chip {
  padding: 10px 14px;
  border: 1px solid rgba(10, 124, 194, 0.14);
  border-radius: 999px;
  background: rgba(10, 124, 194, 0.08);
  font: inherit;
  font-weight: 800;
  color: var(--text);
  cursor: pointer;
}

.filter-chip.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

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

.model-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.model-card-top {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  align-items: center;
}

.model-photo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 16px;
  border: 1px solid rgba(16, 34, 43, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(10, 124, 194, 0.08), transparent 52%),
    linear-gradient(180deg, #f9fbfc 0%, #e6eef2 100%);
}

.model-photo {
  width: 100%;
  max-width: 180px;
  max-height: 190px;
  object-fit: contain;
  display: block;
}

.machine-stack {
  position: relative;
  width: 190px;
  margin: 0 auto;
  padding-top: 6px;
}

.machine-stack-hero {
  transform: scale(1.08);
  transform-origin: center top;
}

.stack-head,
.stack-base {
  position: relative;
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.stack-head {
  width: 100%;
  height: 92px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, #d9e7ef, #8aa8bb);
  box-shadow: inset 0 -18px 30px rgba(7, 42, 60, 0.12);
}

.stack-head-wide {
  width: 190px;
}

.stack-head-narrow {
  width: 150px;
}

.stack-logo {
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: rgba(16, 34, 43, 0.74);
}

.stack-screen {
  position: absolute;
  right: 14px;
  top: 16px;
  width: 44px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(180deg, #213743, #0f2730);
}

.stack-vent {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  height: 12px;
  border-radius: 999px;
  background: repeating-linear-gradient(
    90deg,
    rgba(16, 34, 43, 0.14) 0 8px,
    rgba(255, 255, 255, 0.22) 8px 14px
  );
}

.stack-bridge {
  width: 50px;
  height: 12px;
  margin: 6px auto;
  border-radius: 999px;
  background: linear-gradient(180deg, #cad7df, #8ea7b8);
}

.stack-base {
  width: 172px;
  height: 138px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #1a2228, #0b1014);
  box-shadow: inset 0 -18px 24px rgba(255, 255, 255, 0.04);
}

.stack-dispenser-panel {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 18px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stack-nozzle {
  position: absolute;
  top: 78px;
  width: 18px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #d9e7ef, #8da6b4);
}

.stack-nozzle-left {
  left: 52px;
}

.stack-nozzle-right {
  right: 52px;
}

.model-title {
  margin: 8px 0 10px;
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  line-height: 0.98;
}

.model-brand-name {
  margin: 0 0 6px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.55rem, 2vw, 1.95rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--text);
}

.model-subtitle,
.model-description,
.model-source-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.model-meta,
.model-specs,
.model-highlights,
.model-source-link {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.model-meta span,
.model-specs span,
.model-highlights span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(10, 124, 194, 0.08);
  border: 1px solid rgba(10, 124, 194, 0.12);
  font-size: 0.9rem;
  font-weight: 700;
}

.model-highlights span {
  background: rgba(255, 122, 26, 0.08);
  border-color: rgba(255, 122, 26, 0.14);
}

.model-source-link a {
  color: var(--primary);
  font-weight: 800;
}

.model-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industries-section {
  padding: 28px;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-grid span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(10, 124, 194, 0.08);
  border: 1px solid rgba(10, 124, 194, 0.12);
  font-weight: 700;
}

.quote-highlight {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(25, 169, 116, 0.08);
  border: 1px solid rgba(25, 169, 116, 0.18);
}

.quote-highlight strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.quote-highlight p {
  margin: 0;
}

.quote-form {
  display: grid;
  gap: 12px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  padding: 14px 16px;
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .hero,
  .support-grid,
  .width-grid,
  .distributor-grid,
  .payment-explainer,
  .calculator-layout,
  .quote-section,
  .capacity-grid,
  .model-grid,
  .distributor-hero,
  .positioning-grid,
  .email-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 20px, 1220px);
  }

  .page-shell {
    width: min(100% - 20px, 1220px);
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
  }

  .subpage-topbar {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
  }

  .top-actions {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-block {
    align-items: flex-start;
  }

  .contact-block span {
    text-align: left;
  }

  .hero-copy,
  .hero-panel-card,
  .support-grid article,
  .width-card,
  .manufacturer-card,
  .payment-card,
  .calculator-card,
  .results-card,
  .capacity-card,
  .industries-section,
  .quote-copy,
  .quote-form {
    border-radius: 22px;
  }

  .hero-copy {
    padding: 28px;
  }

  .hero-points,
  .width-card-header,
  .manufacturer-card-top,
  .capacity-card-top,
  .model-card-top {
    grid-template-columns: 1fr;
  }

  .hero-machine-visual {
    min-height: 220px;
    padding: 14px;
  }

  .hero-machine-image {
    width: min(100%, 240px);
    height: 180px;
  }

  .width-card-header,
  .manufacturer-card-top,
  .capacity-card-top,
  .model-card-top {
    display: grid;
  }

  .machine-stack-hero {
    transform: scale(0.94);
  }
}
