:root {
  --bg: #f6f7f8;
  --surface: #ffffff;
  --surface-soft: #f9fafb;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --primary: #111827;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.12);
  --radius-card: 24px;
  --radius-panel: 18px;
  --radius-btn: 8px;
  --container: 1200px;
  --anchor-offset: 88px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: var(--anchor-offset);
}

section[id] {
  scroll-margin-top: var(--anchor-offset);
}

body {
  background: radial-gradient(1200px 500px at 50% -200px, #eef2ff 0%, var(--bg) 58%);
  color: var(--text);
  font-family: "Matter", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: saturate(150%) blur(8px);
  background: rgba(246, 247, 248, 0.88);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.nav-row {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

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

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  color: #334155;
}

.nav-links a:hover {
  color: #0f172a;
}

.nav-actions {
  display: inline-flex;
  gap: 18px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border-strong);
  min-height: 38px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 550;
  transition: all 0.18s ease;
  white-space: nowrap;
}

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

.btn.is-disabled,
.btn[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
  cursor: default;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background: #000000;
}

.btn-ghost {
  background: #ffffff;
  color: #0f172a;
}

.btn-google {
  background: #ffffff;
  border-color: var(--border-strong);
  color: #0f172a;
}

/* Header actions styled like cal.com */
.nav-actions .btn-ghost {
  border: 0;
  background: transparent;
  min-height: auto;
  padding: 0;
  font-size: 15px;
  font-weight: 400;
}

.nav-actions .btn-ghost:hover {
  transform: none;
}

.nav-actions .btn-primary {
  min-height: 38px;
  padding: 0 18px;
  border-radius: var(--radius-btn);
  border: 1px solid #2f3238;
  background: linear-gradient(180deg, #2f3238 0%, #1f2126 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  gap: 0;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 520;
  color: #334155;
}

.hero-copy h1 {
  margin: 18px 0 12px;
  font-family: "Cal Sans", "Matter", "Inter", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: clamp(40px, 7.2vw, 78px);
  line-height: 1.02;
  max-width: 13ch;
}

.hero-sub {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 18px;
}

.hero-cta {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: #64748b;
}

.hero-panel {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  padding: 18px;
}

.hero-carousel {
  position: relative;
  border-radius: calc(var(--radius-panel) + 2px);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #ffffff;
  aspect-ratio: 16 / 11;
}

.hero-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0;
  transform: translateX(-4.5%);
  opacity: 0;
  transition: opacity 360ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.meeting-card,
.calendar-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-sm);
  padding: 16px;
}

.meeting-owner {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.meeting-card h3 {
  margin: 8px 0;
  font-size: 24px;
  font-family: "Cal Sans", "Matter", "Inter", system-ui, sans-serif;
  font-weight: 560;
  letter-spacing: 0.01em;
}

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

.duration-row {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.duration-row span {
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  color: #1e293b;
  padding: 6px 10px;
}

.calendar-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.calendar-month {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}

.calendar-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  text-align: center;
  font-size: 12px;
}

.calendar-grid span {
  border-radius: 8px;
  padding: 5px 0;
}

.calendar-grid .muted {
  color: #94a3b8;
}

.calendar-grid .active {
  background: #111827;
  color: #ffffff;
}

.trust-strip {
  padding: 18px 0 0;
}

.trust-inner {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0 28px;
  text-align: center;
}

.trust-copy {
  max-width: 820px;
  margin: 0 auto;
}

.trust-inner h2 {
  margin: 0 auto 14px;
  max-width: 20ch;
  font-family: "Cal Sans", "Matter", "Inter", system-ui, sans-serif;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.trust-lead {
  margin: 0;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 420;
  line-height: 1.6;
  color: #64748b;
}

.audience-row {
  margin: 22px auto 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 980px;
}

.audience-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid #d7dee8;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  font-weight: 560;
  letter-spacing: 0.01em;
  color: #334155;
}

.section {
  padding: 76px 0;
}

#developers {
  padding-top: 24px;
  padding-bottom: 24px;
}

#solutions {
  padding-bottom: 24px;
}

#pricing {
  padding-top: 24px;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #f8fafc 16%, rgba(255, 255, 255, 0) 100%);
}

.section-head {
  text-align: center;
  max-width: 860px;
}

.eyebrow {
  margin: 0;
  font-size: 13px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-head h2 {
  margin: 12px 0 10px;
  font-family: "Cal Sans", "Matter", "Inter", system-ui, sans-serif;
  font-size: clamp(30px, 4.6vw, 56px);
  font-weight: 560;
  letter-spacing: 0.012em;
  line-height: 1.02;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-divider {
  border-top: 1px solid var(--border);
}

.section-divider-bottom {
  margin-top: 24px;
}

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

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

.step-card,
.feature-card,
.price-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.step-number {
  margin: 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0.12em;
}

.step-card h3,
.feature-card h3,
.price-card h3 {
  margin: 8px 0;
  font-size: 24px;
  font-weight: 560;
  font-family: "Cal Sans", "Matter", "Inter", system-ui, sans-serif;
  letter-spacing: 0.01em;
}

.step-card p,
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.step-copy + .step-copy {
  margin-top: 12px;
}

.step-list {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.step-list li {
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.55;
}

.step-list + .step-copy {
  margin-top: 12px;
}

.price {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.price span {
  font-size: 14px;
  font-family: "Matter", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  color: #64748b;
}

.plan-title .plan-qualifier {
  display: block;
  margin-top: 4px;
  font-family: "Matter", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 0.62em;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  color: #64748b;
}

.price-card ul {
  margin: 0 0 20px;
  padding-left: 18px;
  color: #334155;
}

.price-card li {
  margin: 8px 0;
  font-size: 14px;
}

.pricing-note {
  margin: 0;
  font-family: "Matter", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #64748b;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
}

.pricing-note + .btn {
  margin-top: 12px;
}

.pricing-footnote {
  margin-top: 10px;
}

.featured {
  border-color: #111827;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.badge {
  margin: 0 0 8px;
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  font-size: 12px;
}

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 20px;
  padding: 30px 0 56px;
  background: var(--bg);
}

.footer-simple {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  color: #64748b;
  font-size: 14px;
  text-align: left;
}

.footer-meta p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
}

.footer-meta p + p {
  margin-top: 6px;
}

.lang-switcher {
  position: relative;
}

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

.lang-select {
  min-width: 118px;
  min-height: 34px;
  padding: 0 28px 0 10px;
  border: 1px solid #9ca3af;
  border-radius: 11px;
  background: #ffffff;
  background-image:
    linear-gradient(45deg, transparent 50%, #6b7280 50%),
    linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position:
    calc(100% - 14px) calc(50% - 2px),
    calc(100% - 9px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  appearance: none;
  color: #111827;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  cursor: pointer;
}

.lang-select:hover {
  background: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 24px;
  align-items: start;
}

.footer-grid p {
  margin: 12px 0 0;
  color: #64748b;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 14px;
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
  margin-bottom: 6px;
}

.footer-links a {
  color: inherit;
}

h1,
h2,
h3 {
  font-kerning: normal;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

  .hero-copy h1 {
    max-width: 16ch;
  }

  .steps-grid,
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .nav-row {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .nav-actions .btn-primary {
    min-height: 38px;
    padding: 0 16px;
    border-radius: var(--radius-btn);
    font-size: 15px;
    gap: 8px;
  }

  .hero {
    padding: 48px 0 34px;
  }

  .trust-inner {
    padding: 26px 0 24px;
  }

  .audience-row {
    gap: 8px;
  }

  .audience-row span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 12vw, 56px);
    max-width: none;
  }

  .hero-sub,
  .section-head p {
    font-size: 16px;
  }

  .hero-panel {
    border-radius: 18px;
    padding: 12px;
  }

  .meeting-card h3,
  .step-card h3,
  .feature-card h3,
  .price-card h3 {
    font-size: 22px;
  }

  .section {
    padding: 54px 0;
  }

  .steps-grid,
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .price {
    font-size: 30px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-simple {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .lang-select {
    min-height: 32px;
    min-width: 108px;
    font-size: 13px;
  }
}
