:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f7;
  --tile: #f5f5f7;
  --tile-strong: #eeeeef;
  --surface: #ffffff;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --line: #d2d2d7;
  --accent: #0071e3;
  --accent-hover: #0077ed;
  --success: #0a7f55;
  --radius-xl: 28px;
  --radius-lg: 18px;
  --max-width: 1180px;
  --content-width: 980px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI Variable", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
}

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

.page-shell {
  min-height: 100vh;
  background: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(210, 210, 215, 0.7);
  backdrop-filter: saturate(180%) blur(20px);
}

.site-header__inner,
.site-footer__inner,
.hero,
.section,
.legal-layout,
.ticket-layout {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.brand-text strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.1;
  letter-spacing: 0;
  color: #1d1d1f;
}

.brand-text span {
  display: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  justify-content: flex-end;
}

.site-nav a {
  padding: 7px 10px;
  border-radius: 999px;
  color: #424245;
  font-size: 0.84rem;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: var(--bg-soft);
}

.hero {
  padding: 76px 0 32px;
}

.hero-copy {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #6e6e73;
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.hero-copy h1,
.pricing-header h1,
.legal-card h1,
.ticket-card h1 {
  margin: 18px auto 16px;
  max-width: 820px;
  font-size: clamp(2.05rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 700;
}

.pricing-header h1,
.legal-card h1,
.ticket-card h1 {
  max-width: 820px;
  font-size: clamp(2rem, 3.8vw, 3.3rem);
}

.hero-copy p,
.section-intro p,
.legal-card p,
.ticket-card p,
.pricing-card p,
.card p,
.support-card p,
.metric-card p {
  color: var(--muted);
  line-height: 1.62;
  font-size: 1rem;
}

.hero-copy p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
}

.hero-footnote {
  margin: 14px auto 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

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

.pricing-actions {
  margin: 22px 0 4px;
}

.button,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 21px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

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

.button {
  color: #ffffff;
  background: var(--accent);
  border: 1px solid var(--accent);
  cursor: pointer;
}

.button:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.button-ghost {
  color: var(--accent);
  border: 1px solid rgba(0, 113, 227, 0.24);
  background: #ffffff;
}

.product-showcase {
  max-width: 980px;
  margin: 42px auto 0;
  border-radius: 30px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8f8fa 100%);
  border: 1px solid rgba(210, 210, 215, 0.8);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.showcase-toolbar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(210, 210, 215, 0.72);
}

.showcase-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d2d2d7;
}

.showcase-content {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.35fr 1fr 1fr;
  padding: 22px;
}

.showcase-panel {
  min-height: 150px;
  padding: 22px;
  border-radius: 24px;
  background: var(--tile);
}

.showcase-panel.primary {
  grid-row: span 2;
  min-height: 318px;
  background:
    radial-gradient(circle at 78% 24%, rgba(0, 113, 227, 0.14), transparent 34%),
    linear-gradient(180deg, #f5f9ff 0%, #eef5ff 100%);
}

.showcase-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.showcase-panel strong {
  display: block;
  max-width: 280px;
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  line-height: 1.08;
}

.showcase-bars {
  display: grid;
  gap: 13px;
  margin-top: 82px;
}

.showcase-bars i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0071e3 0%, #64b5ff 100%);
}

.feature-grid,
.pricing-grid,
.support-grid,
.policy-grid,
.ticket-form {
  display: grid;
  gap: 18px;
}

.section {
  padding: 54px 0;
}

.section:nth-of-type(even) {
  width: 100%;
  max-width: none;
  padding: 72px max(16px, calc((100% - var(--max-width)) / 2));
  background: var(--bg-soft);
}

.hero + .section {
  padding-top: 72px;
}

.section-intro {
  max-width: 780px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-intro h2 {
  margin: 0 0 12px;
  font-size: clamp(2.15rem, 4.4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

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

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

.pricing-grid.single {
  max-width: 760px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

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

.card,
.pricing-card,
.support-card,
.ticket-card,
.legal-card,
.metric-card {
  border: 1px solid rgba(210, 210, 215, 0.82);
  background: var(--surface);
  border-radius: var(--radius-xl);
}

.card,
.support-card,
.metric-card,
.pricing-card,
.legal-card,
.ticket-card {
  padding: clamp(24px, 3.2vw, 44px);
}

.card {
  min-height: 240px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
}

.card h3,
.support-card h3,
.metric-card h3,
.pricing-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.12;
}

.card p,
.support-card p,
.metric-card p,
.pricing-card p {
  margin: 0;
}

.metric-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.1fr 0.9fr;
}

.metric-card.dark,
.pricing-card.highlight,
.callout {
  background: linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 100%);
}

.metric-card.dark {
  min-height: 520px;
}

.metric-number {
  display: block;
  margin-top: 20px;
  max-width: 620px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.02;
  font-weight: 700;
}

.metric-list,
.pricing-list,
.legal-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
  color: #424245;
  line-height: 1.55;
}

.pricing-list li,
.legal-list li,
.metric-list li {
  position: relative;
  padding-left: 18px;
}

.pricing-list li::before,
.legal-list li::before,
.metric-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--success);
}

.pricing-header,
.legal-layout,
.ticket-layout {
  padding: 64px 0 84px;
}

.pricing-header .section-intro {
  margin-bottom: 38px;
}

.price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 18px;
}

.price strong {
  font-size: clamp(2.3rem, 5vw, 4.1rem);
  line-height: 1;
}

.price span,
.legal-meta,
.ticket-meta,
.muted,
.form-note {
  color: var(--muted);
}

.pricing-badge {
  display: inline-flex;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(10, 127, 85, 0.1);
  color: var(--success);
  font-size: 0.8rem;
  font-weight: 700;
  align-items: center;
  margin-bottom: 18px;
}

.legal-layout {
  max-width: 900px;
}

.legal-card h2 {
  margin: 30px 0 10px;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.25;
}

.ticket-layout {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: start;
}

.ticket-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
}

.ticket-form {
  margin-top: 26px;
}

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

.field label {
  font-size: 0.9rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(0, 113, 227, 0.65);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
  outline: none;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.status-box {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 18px;
  border-radius: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.status-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 0;
}

.status-row span:last-child {
  color: var(--success);
  font-weight: 700;
  text-align: right;
}

.site-footer {
  margin-top: 0;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 0 40px;
}

.footer-copy {
  max-width: 620px;
}

.footer-copy p,
.footer-links a {
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
}

.footer-links a {
  padding: 0 14px;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 14px;
  background: var(--line);
  transform: translateY(-50%);
}

.footer-links a:last-child::after {
  display: none;
}

.callout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(210, 210, 215, 0.82);
  border-radius: 30px;
}

.callout h2 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  line-height: 1.12;
}

.callout p {
  margin: 12px 0 0;
  color: var(--muted);
}

.callout .hero-actions {
  margin-top: 0;
  justify-content: flex-start;
}

@media (max-width: 980px) {
  .metric-grid,
  .ticket-layout,
  .showcase-content {
    grid-template-columns: 1fr;
  }

  .showcase-panel.primary {
    grid-row: auto;
    min-height: 260px;
  }

  .feature-grid,
  .support-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

.metric-card.dark {
  min-height: 0;
}

  .site-header {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header__inner {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-copy h1 {
    font-size: clamp(2.05rem, 10vw, 3.2rem);
  }

  .product-showcase {
    margin-top: 38px;
    border-radius: 24px;
  }

  .showcase-content {
    padding: 14px;
  }

  .showcase-panel {
    min-height: 132px;
    border-radius: 18px;
  }

  .section,
  .section:nth-of-type(even),
  .pricing-header,
  .legal-layout,
  .ticket-layout {
    padding-top: 44px;
    padding-bottom: 54px;
  }

  .footer-links a {
    padding: 0 10px;
  }
}
