:root {
  color-scheme: light;
  --ink: #0b1722;
  --ink-soft: #344450;
  --teal: #0a8580;
  --teal-dark: #076762;
  --orange: #f57c14;
  --green: #28764a;
  --yellow: #e3ab24;
  --coral: #c95b4e;
  --paper: #ffffff;
  --mist: #eef3f4;
  --line: #d6e0e2;
  --shadow: 0 20px 55px rgba(10, 30, 40, 0.14);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

button,
input {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 9px 13px;
  color: #fff;
  background: var(--ink);
  border-radius: 4px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  padding: 0 max(24px, calc((100% - 1180px) / 2));
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(10, 30, 40, 0.08);
}

.brand-link {
  display: block;
  flex: 0 0 auto;
  width: 224px;
  height: 52px;
  overflow: hidden;
  background: #fff;
}

.brand-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.28);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.91rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #58d3cb;
}

.is-scrolled .site-nav a:hover,
.is-scrolled .site-nav a:focus-visible {
  color: var(--teal-dark);
}

.site-nav .nav-sign-in {
  padding: 9px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
}

.site-header.is-scrolled .nav-sign-in {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.mobile-menu-button {
  display: none;
}

.icon-button {
  width: 42px;
  height: 42px;
  padding: 9px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 5px;
  cursor: pointer;
}

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

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 88svh;
  max-height: 860px;
  overflow: hidden;
  color: #fff;
  background: #0a1721;
}

.hero-background,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background: rgba(7, 18, 26, 0.76);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 92px;
  padding-bottom: 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #67ddd5;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--teal-dark);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.25rem, 8vw, 6.65rem);
  line-height: 0.94;
  font-weight: 850;
}

.hero-copy {
  max-width: 690px;
  margin: 26px 0 0;
  color: #e6eef0;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 17px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: #d86206;
  border-color: #d86206;
}

.button-secondary {
  color: #fff;
  background: rgba(7, 18, 26, 0.54);
  border-color: rgba(255, 255, 255, 0.55);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(7, 18, 26, 0.84);
  border-color: #fff;
}

.button-dark {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

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

.button-wide {
  width: 100%;
}

.button[aria-disabled="true"] {
  color: #6c777d;
  background: #e3e9ea;
  border-color: #e3e9ea;
  cursor: not-allowed;
}

.button[aria-disabled="true"]:hover {
  transform: none;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 29px 0 0;
  padding: 0;
  color: #d5e1e4;
  font-size: 0.88rem;
  font-weight: 700;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-points svg,
.included-grid svg {
  width: 17px;
  height: 17px;
  color: #68d8d1;
  stroke-width: 2.5;
}

.signal-band {
  color: #fff;
  background: var(--teal-dark);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 112px;
}

.signal-grid > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.signal-grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.signal-grid strong {
  font-size: 1.04rem;
}

.signal-grid span {
  color: #cce8e5;
  font-size: 0.86rem;
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 610px;
}

.section-heading-wide {
  max-width: 760px;
}

.section-heading h2,
.setup-copy h2,
.subscription-copy h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  line-height: 1.06;
}

.section-heading > p:last-child,
.setup-copy > p,
.subscription-copy > p {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.platform-section {
  background: #f5f8f8;
}

.product-frame {
  margin-top: 46px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #c8d5d8;
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.product-frame-bar {
  display: flex;
  align-items: center;
  height: 42px;
  padding: 0 14px;
  gap: 7px;
  color: #65747c;
  background: #e7edef;
  border-bottom: 1px solid #c8d5d8;
  font-size: 0.74rem;
}

.product-frame-bar > span {
  width: 9px;
  height: 9px;
  background: #acb8bd;
  border-radius: 50%;
}

.product-frame-bar div {
  width: min(440px, 70%);
  margin-left: 10px;
  padding: 5px 12px;
  text-align: center;
  background: #fff;
  border: 1px solid #d4dcde;
  border-radius: 4px;
}

.product-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.operations-section {
  background: #fff;
}

.operations-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 82px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 112px;
}

.capability-list {
  border-top: 1px solid var(--line);
}

.capability {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.capability-icon,
.workspace-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--teal);
  border-radius: 5px;
}

.capability-icon.orange { background: var(--orange); }
.capability-icon.green { background: var(--green); }
.capability-icon.yellow { background: var(--yellow); }
.capability-icon.coral { background: var(--coral); }
.capability-icon.ink { background: var(--ink); }

.capability-icon svg,
.workspace-icon svg {
  width: 23px;
  height: 23px;
}

.capability h3 {
  margin: 0;
  font-size: 1.19rem;
  line-height: 1.25;
}

.capability p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.setup-section {
  color: #fff;
  background: #0a1721;
}

.setup-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: 90px;
  align-items: center;
}

.setup-copy > p {
  max-width: 650px;
  color: #cbd8dc;
}

.setup-steps {
  display: grid;
  gap: 0;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.setup-steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  padding: 19px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.setup-steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.setup-steps li > span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: var(--ink);
  background: #68d8d1;
  border-radius: 50%;
  font-size: 0.83rem;
  font-weight: 850;
}

.setup-steps strong {
  display: block;
  font-size: 1rem;
}

.setup-steps p {
  margin: 3px 0 0;
  color: #aebdc2;
  font-size: 0.9rem;
}

.workspace-panel {
  padding: 32px;
  color: var(--ink);
  background: #fff;
  border-top: 5px solid var(--orange);
  border-radius: 7px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.workspace-panel .workspace-icon {
  margin-bottom: 24px;
}

.workspace-panel h3 {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.14;
}

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

.workspace-form label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.82rem;
  font-weight: 800;
}

.domain-input {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #9eafb5;
  border-radius: 5px;
}

.domain-input:focus-within {
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 3px rgba(10, 133, 128, 0.16);
}

.domain-input input {
  width: 42%;
  min-width: 120px;
  padding: 11px 10px;
  color: var(--ink);
  background: #fff;
  border: 0;
  outline: 0;
}

.domain-input span {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0 10px 0 0;
  color: #5d6b71;
  background: #fff;
  font-size: 0.8rem;
  white-space: nowrap;
}

.workspace-form .button {
  width: 100%;
  margin-top: 12px;
}

.form-message {
  min-height: 22px;
  margin: 9px 0 0;
  color: var(--coral);
  font-size: 0.82rem;
}

.subscription-section {
  background: #eef3f4;
}

.subscription-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: 86px;
  align-items: center;
}

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

.included-grid span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #263640;
  font-size: 0.91rem;
  font-weight: 700;
}

.included-grid svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--teal-dark);
}

.pricing-panel {
  padding: 32px;
  background: #fff;
  border: 1px solid #bdcbce;
  border-top: 5px solid var(--teal);
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.pricing-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-topline strong {
  padding: 4px 8px;
  color: #fff;
  background: var(--teal-dark);
  border-radius: 3px;
  font-size: 0.7rem;
}

.pricing-panel h3 {
  margin: 20px 0 0;
  font-size: 1.65rem;
  line-height: 1.14;
}

.price-line {
  display: grid;
  gap: 2px;
  margin-top: 15px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.price-line strong {
  font-size: 1.12rem;
}

.price-line span {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.pricing-panel ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  padding-left: 19px;
  color: #31414a;
  font-size: 0.9rem;
}

.pricing-panel li::marker {
  color: var(--orange);
}

.checkout-status {
  min-height: 20px;
  margin: 9px 0 0;
  color: #65737a;
  font-size: 0.78rem;
  text-align: center;
}

.faq-section {
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 84px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 0;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: var(--teal-dark);
  transition: transform 160ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.faq-list details p {
  margin: -5px 42px 23px 0;
  color: var(--ink-soft);
}

.site-footer {
  padding: 46px 0;
  color: #dbe5e7;
  background: #0a1721;
}

.footer-layout {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 30px;
}

.footer-layout img {
  width: 220px;
  background: #fff;
  transform: scale(1.08);
}

.footer-layout p {
  margin: 0;
  color: #aebdc2;
  font-size: 0.9rem;
}

.footer-layout > div {
  display: flex;
  gap: 18px;
  font-size: 0.85rem;
  font-weight: 700;
}

.footer-layout > div a {
  text-decoration: none;
}

.footer-layout small {
  grid-column: 1 / -1;
  padding-top: 20px;
  color: #82939a;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 450ms ease, transform 450ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-header {
    height: 66px;
    padding: 0 20px;
  }

  .brand-link {
    width: 184px;
    height: 44px;
  }

  .mobile-menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    right: 14px;
    left: 14px;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 10px 9px;
  }

  .site-nav .nav-sign-in,
  .site-header.is-scrolled .nav-sign-in {
    margin-top: 4px;
    color: #fff;
    background: var(--ink);
    border-color: var(--ink);
  }

  .hero-content {
    padding-top: 104px;
  }

  .operations-layout,
  .setup-layout,
  .subscription-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sticky-heading {
    position: static;
  }

  .setup-layout {
    align-items: stretch;
  }

  .workspace-panel,
  .pricing-panel {
    max-width: 620px;
  }
}

@media (max-width: 680px) {
  .page-width {
    width: min(100% - 30px, 1180px);
  }

  .hero {
    min-height: 84svh;
  }

  .hero-background {
    object-position: 57% center;
  }

  .hero-shade {
    background: rgba(7, 18, 26, 0.82);
  }

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

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 8px;
  }

  .signal-grid {
    grid-template-columns: 1fr;
    padding: 10px 0;
  }

  .signal-grid > div,
  .signal-grid > div:last-child {
    min-height: 76px;
    padding: 15px 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .signal-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .setup-copy h2,
  .subscription-copy h2 {
    font-size: 2.3rem;
  }

  .product-frame {
    margin-top: 32px;
  }

  .product-frame-bar {
    height: 34px;
  }

  .product-frame-bar div {
    overflow: hidden;
    white-space: nowrap;
  }

  .capability {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .capability-icon {
    width: 40px;
    height: 40px;
  }

  .workspace-panel,
  .pricing-panel {
    padding: 24px;
  }

  .domain-input {
    display: grid;
    grid-template-columns: minmax(90px, 0.9fr) minmax(172px, 1.6fr);
  }

  .domain-input input {
    width: 100%;
    min-width: 0;
  }

  .domain-input span {
    min-width: 0;
    overflow: hidden;
    font-size: 0.72rem;
  }

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

  .pricing-topline {
    align-items: flex-start;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-layout > div {
    flex-wrap: wrap;
  }

  .footer-layout small {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
