:root {
  color-scheme: light;
  --background: #f8fbfa;
  --surface: #ffffff;
  --surface-muted: #eef5f4;
  --text: #172427;
  --muted: #5c6c70;
  --border: #dce7e5;
  --primary: #05a38e;
  --primary-dark: #037a6b;
  --primary-soft: #e4f8f5;
  --accent: #05a38e;
  --ink: #172427;
  --ink-soft: #203236;
  --warning: #b36a07;
  --success: #24834d;
  --info: #037a6b;
  --shadow: 0 18px 50px -30px rgba(10, 38, 41, 0.52);
  --radius: 7px;
  --radius-lg: 10px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Bahnschrift, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(220, 231, 229, 0.86);
  background: rgba(248, 251, 250, 0.92);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 6px;
  background: transparent url("/uploads/Optipus%20logo.png") center / contain no-repeat;
}

.brand-mark.mini {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.site-nav {
  position: absolute;
  inset: 68px 12px auto 12px;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a,
.site-nav .nav-disabled {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav .nav-disabled:hover,
.site-nav .nav-disabled:focus-visible {
  background: var(--surface-muted);
  color: var(--text);
  outline: none;
}

.site-nav .nav-disabled {
  cursor: not-allowed;
  opacity: 0.64;
}

.site-nav .nav-disabled::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  z-index: 40;
  padding: 7px 10px;
  border: 1px solid rgba(17, 25, 23, 0.14);
  border-radius: 6px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  white-space: nowrap;
  box-shadow: 0 12px 26px -16px rgba(0, 0, 0, 0.58);
  opacity: 0;
  transform: translate(-50%, -4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav .nav-disabled:hover::after,
.site-nav .nav-disabled:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.site-nav .nav-cta {
  justify-content: center;
  margin-top: 6px;
  background: var(--primary);
  color: var(--text);
}

.section {
  width: min(calc(100% - 36px), var(--container));
  margin: 0 auto;
  padding: 58px 0;
}

.hero {
  display: grid;
  gap: 34px;
  padding-top: 48px;
}

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

h1,
h2,
h3,
.button,
.site-nav,
.brand,
label {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 8.5vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
  hyphens: manual;
}

h2 {
  font-size: clamp(1.9rem, 7vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
  hyphens: manual;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.15;
}

.hero-copy p,
.section-heading p,
.cta-panel p,
.trust-copy p,
.legal-hero p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.05rem;
  hyphens: manual;
}

.button-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 26px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  background: var(--primary);
  color: var(--text);
  border-color: var(--primary-dark);
}

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

.button-secondary {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}

.product-preview,
.feature-card,
.preview-card,
.price-card,
.legal-card,
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-preview {
  min-width: 0;
  overflow: hidden;
  padding: 14px;
}

.preview-topbar {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 8px 8px 14px;
  border-bottom: 1px solid var(--border);
}

.preview-date {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.86rem;
  white-space: nowrap;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding-top: 14px;
}

.preview-card {
  min-width: 0;
  min-height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 16px;
  box-shadow: none;
}

.preview-card.wide {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  background: var(--primary-soft);
}

.preview-card.wide > div {
  min-width: 0;
}

.preview-card h2 {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.preview-card p,
.preview-card span {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  overflow-wrap: normal;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.success {
  background: var(--success);
}

.warning {
  background: var(--warning);
}

.info {
  background: var(--info);
}

.teal-dot {
  background: var(--primary);
}

.split-band {
  display: grid;
  gap: 22px;
  width: 100%;
  max-width: none;
  padding: 54px max(18px, calc((100vw - var(--container)) / 2));
  background: var(--surface-muted);
}

.split-band h2 {
  margin-bottom: 0;
}

.split-band p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
  max-width: 760px;
}

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

.feature-card {
  min-width: 0;
  padding: 20px;
  box-shadow: none;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(5, 163, 142, 0.35);
  background: #fbfefd;
}

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

.icon-wrap {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(5, 163, 142, 0.18);
  border-radius: var(--radius);
  background: var(--primary-soft);
  color: var(--primary);
}

.icon-wrap svg {
  width: 22px;
  height: 22px;
}

.icon-wrap.teal {
  margin-bottom: 0;
  background: var(--primary);
  color: #ffffff;
}

.trust-section {
  display: grid;
  gap: 22px;
}

.trust-list {
  display: grid;
  gap: 10px;
}

.trust-list div {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.trust-list span {
  color: var(--muted);
}

.cta-panel {
  display: grid;
  gap: 14px;
  padding: 34px 22px;
  border: 1px solid rgba(5, 163, 142, 0.22);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary-soft), #ffffff);
}

.cta-panel h2 {
  margin-bottom: 0;
}

.cta-panel .button {
  width: 100%;
}

.site-footer {
  display: grid;
  gap: 26px;
  width: min(calc(100% - 36px), var(--container));
  margin: 28px auto 0;
  padding: 32px 0 42px;
  border-top: 1px solid var(--border);
}

.site-footer p {
  max-width: 340px;
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.footer-links {
  display: grid;
  gap: 22px;
}

.footer-group {
  display: grid;
  gap: 10px;
}

.footer-group h2 {
  margin-bottom: 2px;
  font-size: 0.82rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
}

.site-footer nav a,
.site-footer nav .nav-disabled {
  color: var(--muted);
  font-weight: 700;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--primary);
  outline: none;
}

.site-footer nav .nav-disabled {
  width: fit-content;
  cursor: not-allowed;
  opacity: 0.55;
}

.page-hero {
  display: grid;
  gap: 18px;
  padding-top: 46px;
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.detail-card {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.detail-card h2 {
  font-size: clamp(1.45rem, 5vw, 2rem);
  line-height: 1.08;
}

.detail-card ul,
.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-card li,
.price-card li {
  display: flex;
  gap: 9px;
  color: var(--muted);
}

.detail-card li::before,
.price-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--primary);
}

.mini-visual {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-muted);
}

.mini-visual span {
  min-height: 28px;
  display: flex;
  align-items: center;
  padding: 5px 8px;
  border-radius: 5px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.module-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 22px;
}

.price-card.featured,
.price-card.base-plan {
  border-color: rgba(5, 163, 142, 0.45);
  background: linear-gradient(180deg, #ffffff, var(--primary-soft));
}

.module-card {
  gap: 14px;
  background: var(--surface);
}

.plan-badge {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price {
  display: block;
  margin: 8px 0;
  font-size: clamp(2rem, 9vw, 3.2rem);
  font-weight: 850;
  line-height: 1;
}

.price-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.price-card .button {
  margin-top: auto;
}

.notice {
  margin-top: 18px;
  padding: 16px;
  border: 1px dashed rgba(5, 163, 142, 0.45);
  border-radius: var(--radius);
  background: var(--primary-soft);
  color: var(--primary-dark);
}

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

.faq-item {
  padding: 18px;
  box-shadow: none;
}

.faq-item h3 {
  margin-bottom: 6px;
}

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

.contact-layout {
  display: grid;
  gap: 34px;
  max-width: 760px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.form-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 8px;
}

.form-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 7vw, 4rem);
}

.form-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.field {
  display: grid;
  gap: 6px;
}

label {
  font-weight: 800;
  font-size: 0.86rem;
}

.required-marker {
  color: var(--primary-dark);
}

input,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid #b7c9c7;
  border-radius: 5px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  outline: 3px solid rgba(5, 163, 142, 0.16);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--primary-dark);
  font-weight: 700;
}

.mail-link {
  color: var(--primary);
  font-weight: 800;
}

.legal-layout {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.legal-card {
  padding: 22px;
  box-shadow: none;
}

.legal-card h2 {
  font-size: 1.45rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card p {
  margin-bottom: 12px;
}

.legal-card p:last-child,
.legal-card ul:last-child {
  margin-bottom: 0;
}

.legal-card ul {
  padding-left: 20px;
}

.legal-card a {
  color: var(--primary);
  font-weight: 800;
  overflow-wrap: anywhere;
}

@media (min-width: 700px) {
  .site-header {
    padding-inline: max(26px, calc((100vw - var(--container)) / 2));
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a,
  .site-nav .nav-disabled {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  .site-nav .nav-cta {
    margin: 0 0 0 4px;
    padding-inline: 14px;
  }

  .button-row {
    flex-direction: row;
  }

  .button {
    width: auto;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
    align-items: center;
    min-height: calc(100vh - 76px);
    padding-top: 34px;
  }

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

  .preview-card.wide {
    grid-column: 1 / -1;
  }

  .split-band,
  .trust-section {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }

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

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

  .cta-panel {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 36px;
  }

  .cta-panel p {
    grid-column: 1;
  }

  .cta-panel .button {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .site-footer {
    grid-template-columns: 1fr 1.4fr;
  }

  .site-footer nav,
  .footer-links {
    align-items: start;
  }
}

@media (max-width: 699px) {
  .section {
    width: calc(100% - 36px);
    padding-left: 0;
    padding-right: 0;
  }

  .split-band {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-footer {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (min-width: 980px) {
  .feature-grid,
  .detail-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .page-hero {
    padding-top: 72px;
  }
}

/* Expressive homepage system */
.site-header {
  border-bottom-color: rgba(16, 23, 21, 0.09);
  background: rgba(243, 245, 239, 0.88);
}

.site-nav a,
.site-nav .nav-disabled {
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav .nav-disabled:hover,
.site-nav .nav-disabled:focus-visible {
  transform: translateY(-1px);
}

.site-nav .nav-cta,
.button-primary {
  background: var(--primary);
  border-color: var(--primary-dark);
  color: var(--text);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text);
}

.page-hero {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(52px, 8vw, 104px) max(18px, calc((100vw - var(--container)) / 2)) clamp(44px, 7vw, 84px);
  overflow: hidden;
  background:
    linear-gradient(112deg, rgba(248, 251, 250, 1) 0%, rgba(248, 251, 250, 0.96) 52%, rgba(228, 248, 245, 0.9) 100%),
    repeating-linear-gradient(90deg, rgba(5, 163, 142, 0.08) 0 1px, transparent 1px 70px);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: max(18px, calc((100vw - var(--container)) / 2));
  bottom: 0;
  width: min(38vw, 420px);
  height: 5px;
  background: var(--primary);
}

.page-hero h1 {
  max-width: 880px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.9;
}

.page-hero p {
  max-width: 680px;
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
}

.detail-card,
.price-card,
.faq-item,
.contact-form {
  border-radius: 0;
}

.detail-card,
.price-card {
  border-color: rgba(17, 25, 23, 0.12);
}

.detail-card h2,
.price-card h2 {
  font-size: clamp(1.7rem, 4vw, 2.45rem);
}

.detail-card:hover,
.price-card:hover,
.faq-item:hover {
  border-color: rgba(5, 163, 142, 0.34);
}

.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  min-height: calc(88svh - 68px);
  grid-template-columns: minmax(0, 1fr);
  margin: 0;
  padding: clamp(24px, 3.5vw, 48px) max(18px, calc((100vw - var(--container)) / 2)) clamp(48px, 7vw, 88px);
  overflow: hidden;
  background:
    linear-gradient(112deg, rgba(248, 251, 250, 1) 0%, rgba(248, 251, 250, 0.98) 48%, rgba(228, 248, 245, 0.92) 100%),
    radial-gradient(circle at 78% 20%, rgba(5, 163, 142, 0.2), transparent 38%);
  color: var(--text);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto auto 8% -7%;
  z-index: -1;
  width: 56vw;
  height: 34vw;
  min-width: 420px;
  min-height: 260px;
  border: 1px solid rgba(5, 163, 142, 0.12);
  background:
    linear-gradient(135deg, rgba(5, 163, 142, 0.08), transparent 55%),
    repeating-linear-gradient(90deg, rgba(5, 163, 142, 0.1) 0 1px, transparent 1px 58px);
  transform: rotate(-12deg);
}

.hero::after {
  inset: -14% -24% auto auto;
  width: 60vw;
  height: 45vw;
  border-color: rgba(5, 163, 142, 0.13);
  background:
    linear-gradient(135deg, rgba(5, 163, 142, 0.13), transparent 58%),
    repeating-linear-gradient(0deg, rgba(5, 163, 142, 0.08) 0 1px, transparent 1px 54px);
  transform: rotate(18deg);
}

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

.hero h1 {
  max-width: 560px;
  margin-bottom: 20px;
  color: var(--text);
  font-size: clamp(3.8rem, 9vw, 8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy p {
  min-width: 0;
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  overflow-wrap: break-word;
}

.hero-actions {
  margin-top: 30px;
}

.hero .button-secondary {
  background: #ffffff;
  border-color: var(--border);
  color: var(--text);
}

.hero .button-secondary:hover,
.hero .button-secondary:focus-visible {
  background: var(--primary-soft);
  border-color: rgba(5, 163, 142, 0.32);
}

.hero-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  max-width: 640px;
  margin: clamp(30px, 5vw, 54px) 0 0;
  padding: 0;
}

.hero-proof div {
  min-width: 0;
  padding: 0 0 0 16px;
  border-left: 2px solid rgba(5, 163, 142, 0.78);
}

.hero-proof dt {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-proof dd {
  margin: 5px 0 0;
  color: var(--muted);
}

.hero-stage {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 520px;
  perspective: 1200px;
}

.stage-rhythm {
  position: absolute;
  inset: 8% 6% 0 auto;
  width: min(72vw, 660px);
  height: min(72vw, 660px);
  border: 1px solid rgba(5, 163, 142, 0.14);
  border-radius: 50%;
  background:
    conic-gradient(from 140deg, rgba(5, 163, 142, 0), rgba(5, 163, 142, 0.32), rgba(3, 122, 107, 0.18), rgba(5, 163, 142, 0)),
    radial-gradient(circle, rgba(255, 255, 255, 0.72), transparent 64%);
  filter: blur(0.2px);
  opacity: 0.88;
  animation: serviceSpin 18s linear infinite;
}

.service-board {
  position: relative;
  width: min(100%, 610px);
  min-width: 0;
  margin: clamp(20px, 5vw, 74px) 0 0 auto;
  padding: 16px;
  border: 1px solid rgba(5, 163, 142, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(228, 248, 245, 0.94)),
    linear-gradient(90deg, rgba(5, 163, 142, 0.14), transparent);
  color: var(--text);
  box-shadow: 0 42px 90px -48px rgba(0, 0, 0, 0.88);
  transform: rotateX(8deg) rotateY(-11deg) rotateZ(2deg);
  transform-style: preserve-3d;
  transition: transform 220ms ease-out;
}

.board-topbar {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 4px 5px 13px;
  border-bottom: 1px solid rgba(17, 25, 23, 0.1);
}

.board-topbar strong,
.hero-panel strong,
.board-lanes strong,
.floating-note strong {
  line-height: 1.05;
}

.live-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.live-chip span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(5, 163, 142, 0.18);
}

.service-track {
  display: grid;
  grid-template-columns: 0.78fr 1.16fr 0.64fr 0.92fr;
  gap: 8px;
  padding: 14px 0 12px;
}

.service-track span {
  height: 8px;
  border-radius: 999px;
  background: rgba(17, 25, 23, 0.12);
  overflow: hidden;
}

.service-track span::before {
  content: "";
  display: block;
  width: 58%;
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
  animation: trackPulse 3.2s ease-in-out infinite;
}

.service-track span:nth-child(2)::before {
  width: 86%;
  background: var(--primary);
  animation-delay: 420ms;
}

.service-track span:nth-child(3)::before {
  width: 42%;
  background: var(--primary-dark);
  animation-delay: 780ms;
}

.service-track span:nth-child(4)::before {
  width: 68%;
  animation-delay: 1120ms;
}

.board-main {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(150px, 0.85fr);
  gap: 12px;
}

.hero-panel {
  min-width: 0;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 17px;
  border: 1px solid rgba(17, 25, 23, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.panel-cash {
  background: var(--ink);
  color: #ffffff;
}

.panel-cash p,
.panel-cash .panel-label {
  color: rgba(255, 253, 246, 0.7);
}

.panel-label {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-panel strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(1.25rem, 2.6vw, 2.1rem);
}

.hero-panel p,
.board-lanes p,
.floating-note p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.panel-meter {
  height: 10px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.panel-meter span {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), #8ee8dd);
  animation: meterBreathe 3.6s ease-in-out infinite;
}

.task-bars {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.task-bars span {
  height: 9px;
  border-radius: 999px;
  background: rgba(17, 25, 23, 0.1);
}

.task-bars span:nth-child(1) {
  width: 88%;
  background: rgba(5, 163, 142, 0.8);
}

.task-bars span:nth-child(2) {
  width: 68%;
}

.task-bars span:nth-child(3) {
  width: 46%;
}

.board-lanes {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.board-lanes article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(17, 25, 23, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
}

.board-lanes div {
  min-width: 0;
}

.lane-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 50%;
}

.lane-dot.mint {
  background: #6ed8cc;
}

.lane-dot.blue {
  background: var(--primary-dark);
}

.floating-note {
  position: absolute;
  z-index: 2;
  width: min(54vw, 210px);
  padding: 14px;
  border: 1px solid rgba(5, 163, 142, 0.18);
  border-radius: 12px;
  background: rgba(255, 253, 246, 0.94);
  color: var(--text);
  box-shadow: 0 24px 56px -34px rgba(0, 0, 0, 0.88);
  animation: noteFloat 6s ease-in-out infinite;
}

.floating-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.note-shift {
  right: min(1vw, 12px);
  bottom: 38px;
}

.note-wiki {
  left: 3%;
  top: 18%;
  animation-delay: 1.3s;
}

.operation-section {
  display: grid;
  gap: 30px;
  padding-top: clamp(58px, 8vw, 96px);
}

.operation-heading {
  display: grid;
  gap: 16px;
  max-width: 980px;
}

.operation-heading h2 {
  max-width: 760px;
}

.operation-heading p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

.operation-rail {
  display: grid;
  gap: 12px;
}

.operation-rail article {
  position: relative;
  min-width: 0;
  padding: 20px;
  border-left: 3px solid var(--primary);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.operation-rail article:nth-child(2) {
  border-left-color: #6ed8cc;
}

.operation-rail article:nth-child(3) {
  border-left-color: var(--primary-dark);
}

.operation-rail span {
  display: block;
  margin-bottom: 18px;
  color: var(--primary-dark);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.operation-rail p {
  margin-bottom: 0;
  color: var(--muted);
}

.audience-section {
  padding-top: clamp(52px, 8vw, 92px);
}

.audience-grid {
  display: grid;
  gap: 16px;
}

.audience-panel {
  position: relative;
  display: grid;
  gap: 24px;
  min-width: 0;
  padding: clamp(22px, 4vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(17, 25, 23, 0.12);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.audience-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--primary);
}

.team-panel::before {
  background: var(--primary-dark);
}

.admin-panel {
  background:
    linear-gradient(145deg, rgba(23, 36, 39, 0.98), rgba(32, 50, 54, 0.96)),
    var(--ink);
  color: #ffffff;
}

.admin-panel p,
.admin-panel .feature-list span,
.admin-panel .panel-label {
  color: rgba(255, 253, 246, 0.72);
}

.audience-copy {
  display: grid;
  gap: 12px;
  max-width: 640px;
}

.audience-copy h3 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  line-height: 1.02;
}

.audience-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(17, 25, 23, 0.1);
  background: rgba(255, 255, 255, 0.68);
}

.admin-panel .feature-list li {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.feature-list strong {
  font-size: 1.02rem;
  line-height: 1.2;
}

.feature-list span {
  color: var(--muted);
}

.split-band {
  background: var(--ink);
  color: #ffffff;
}

.split-band p {
  color: rgba(255, 253, 246, 0.72);
}

.feature-section {
  padding-top: clamp(58px, 8vw, 96px);
}

.feature-grid {
  gap: 14px;
}

.feature-card {
  border-color: rgba(17, 25, 23, 0.11);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.8);
}

.feature-card:hover {
  border-color: rgba(5, 163, 142, 0.34);
  background: #ffffff;
}

.featured-feature {
  display: grid;
  align-content: end;
  min-height: 270px;
  background:
    linear-gradient(145deg, rgba(23, 36, 39, 0.98), rgba(32, 50, 54, 0.95)),
    var(--ink);
  color: #ffffff;
}

.featured-feature p {
  color: rgba(255, 253, 246, 0.72);
}

.featured-feature .icon-wrap {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--primary);
}

.trust-list div {
  border-left: 3px solid var(--primary);
  border-radius: 0;
}

.trust-list div:nth-child(2) {
  border-left-color: #6ed8cc;
}

.trust-list div:nth-child(3) {
  border-left-color: var(--primary-dark);
}

.cta-panel {
  border-color: rgba(17, 25, 23, 0.16);
  background:
    linear-gradient(135deg, rgba(5, 163, 142, 0.14), rgba(255, 255, 255, 0.92) 42%, rgba(228, 248, 245, 0.82)),
    #ffffff;
}

@keyframes serviceSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes trackPulse {
  0%,
  100% {
    transform: scaleX(0.74);
    transform-origin: left;
  }

  50% {
    transform: scaleX(1);
  }
}

@keyframes meterBreathe {
  0%,
  100% {
    width: 72%;
  }

  50% {
    width: 92%;
  }
}

@keyframes noteFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }

  50% {
    transform: translate3d(0, -10px, 0) rotate(1deg);
  }
}

@media (min-width: 700px) {
  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    align-items: center;
    gap: clamp(26px, 5vw, 74px);
  }

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

  .operation-section {
    grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
    align-items: center;
  }

  .operation-rail {
    padding-top: 0;
  }

  .operation-rail article:nth-child(2) {
    transform: translateX(18px);
  }

  .operation-rail article:nth-child(3) {
    transform: translateX(36px);
  }

  .featured-feature {
    grid-column: span 2;
  }

  .audience-panel {
    grid-template-columns: minmax(0, 0.78fr) minmax(330px, 1fr);
    align-items: end;
  }

}

@media (min-width: 980px) {
  .feature-grid {
    grid-template-columns: 1.25fr repeat(2, minmax(0, 1fr));
  }

  .featured-feature {
    grid-row: span 2;
  }
}

@media (max-width: 860px) {
  .hero-stage {
    min-height: 500px;
  }

  .service-board {
    margin-inline: auto;
    transform: rotateX(6deg) rotateY(-5deg) rotateZ(1deg);
  }

  .floating-note {
    width: min(64vw, 210px);
  }
}

@media (max-width: 699px) {
  .hero {
    width: 100%;
    max-width: 100vw;
    padding-inline: 18px;
  }

  .hero-copy,
  .hero-stage {
    width: 100%;
    max-width: 354px;
    overflow: hidden;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 15vw, 4.25rem);
  }

  .hero-copy p {
    max-width: 100%;
    font-size: 1.02rem;
  }

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

  .service-board {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 12px;
    border-radius: 14px;
    transform: none;
  }

  .board-topbar strong,
  .board-lanes strong,
  .board-lanes p,
  .hero-panel p {
    overflow-wrap: break-word;
  }

  .live-chip {
    padding-inline: 7px;
  }

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

  .floating-note {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 10px;
    animation: none;
  }

  .stage-rhythm {
    inset: 6% auto auto 50%;
    width: 330px;
    height: 330px;
    transform: translateX(-50%);
  }

  .operation-rail article {
    padding: 18px;
  }

  .featured-feature {
    min-height: 230px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
