@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --brand-blue: #5ca6bf;
  --brand-blue-deep: #317790;
  --brand-blue-soft: #dceef5;
  --brand-yellow: #fdd835;
  --ink: #172b4d;
  --ink-soft: #44546f;
  --line: rgba(23, 43, 77, 0.12);
  --panel: #ffffff;
  --panel-soft: #f7fafc;
  --shadow: 0 20px 40px rgba(9, 30, 66, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  background:
    linear-gradient(180deg, var(--brand-blue-soft) 0, var(--brand-blue-soft) 34rem, #ffffff 34rem, #ffffff 100%);
}

a {
  color: inherit;
}

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

label {
  font-weight: 600;
}

input {
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

input:focus-visible {
  outline: 2px solid rgba(92, 166, 191, 0.22);
  border-color: var(--brand-blue);
}

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

.site-shell-home {
  padding-top: 18px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.topbar-home {
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 24px rgba(9, 30, 66, 0.08);
  backdrop-filter: blur(10px);
}

.topbar-links,
.topbar-actions,
.topnav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 8px;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-mark {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.brand-submark {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.text-link {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--brand-blue-deep);
}

.hero-card,
.page-card,
.status-card,
.small-card,
.showcase-card,
.proof-item {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-card,
.page-card {
  padding: clamp(24px, 4vw, 44px);
}

.hero-grid,
.page-grid {
  display: grid;
  gap: 28px;
}

.hero-grid-home {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-blue-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.1;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 6vw, 4.7rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
}

h3 {
  font-size: 1.32rem;
}

.lead {
  max-width: 42rem;
  margin: 0 0 14px;
  font-size: 1.16rem;
  line-height: 1.75;
}

.body-copy,
.muted-copy,
.support-copy,
.status-help,
.field-hint,
p,
li {
  margin-top: 0;
  line-height: 1.72;
}

.body-copy,
.muted-copy {
  max-width: 44rem;
}

.muted-copy,
.support-copy,
.status-help,
.field-hint,
.brand-submark {
  color: var(--ink-soft);
}

.platform-row,
.action-row,
.footer-links,
.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.platform-row {
  margin-top: 20px;
  gap: 14px;
}

.platform-chip,
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(92, 166, 191, 0.12);
  color: var(--brand-blue-deep);
  font-size: 0.95rem;
  font-weight: 600;
}

.action-row {
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 120ms ease,
    border-color 120ms ease,
    color 120ms ease,
    transform 120ms ease,
    box-shadow 120ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(9, 30, 66, 0.1);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: #25657c;
}

.button-secondary {
  border-color: rgba(23, 43, 77, 0.14);
  background: #fff;
  color: var(--ink);
}

.button-danger {
  color: #fff;
  background: #c94f3d;
}

.button-small {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 0.92rem;
}

.button[disabled] {
  opacity: 0.6;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.hero-copy {
  padding-right: 8px;
}

.hero-visual {
  min-width: 0;
}

.browser-frame {
  overflow: hidden;
  border: 1px solid rgba(23, 43, 77, 0.14);
  border-radius: 18px;
  background: #dfe7ee;
  box-shadow: 0 18px 30px rgba(9, 30, 66, 0.12);
}

.browser-frame-light {
  background: #eef3f7;
}

.browser-bar {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(23, 43, 77, 0.08);
  background: #f4f7fa;
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #c4ced8;
}

.hero-shot,
.showcase-image-wrap img {
  width: 100%;
  aspect-ratio: 1.39;
  object-fit: cover;
  object-position: top center;
  background: #fff;
}

.section-shell {
  margin-top: 36px;
}

.section-head {
  max-width: 44rem;
  margin-bottom: 18px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.showcase-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.showcase-copy {
  padding: 22px 22px 16px;
}

.showcase-image-wrap {
  margin: 0 22px 22px;
}

.status-card,
.small-card {
  padding: 24px;
}

.split-section,
.stack {
  display: grid;
  gap: 18px;
}

.feature-list,
.bullet-list {
  margin: 16px 0 0;
  padding-left: 20px;
}

.feature-list li,
.bullet-list li {
  margin-bottom: 12px;
}

.footer-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  padding: 28px;
  background: linear-gradient(180deg, #fff 0%, #f8fbfd 100%);
}

.footer-links {
  align-content: flex-start;
}

.bottom-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.danger-box,
.success-box {
  padding: 16px 18px;
  border-radius: 16px;
  margin-bottom: 18px;
}

.danger-box {
  border: 1px solid rgba(201, 79, 61, 0.2);
  background: rgba(201, 79, 61, 0.08);
  color: #8a2d22;
}

.success-box {
  border: 1px solid rgba(37, 103, 87, 0.18);
  background: rgba(37, 103, 87, 0.08);
  color: #256757;
}

.hidden {
  display: none !important;
}

.account-email {
  margin-bottom: 10px;
  font-weight: 700;
}

.status-help {
  margin-bottom: 18px;
}

@media (max-width: 980px) {
  .hero-grid-home,
  .showcase-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(100%, calc(100% - 24px));
    padding-top: 16px;
    padding-bottom: 40px;
  }

  .topbar,
  .topbar-home {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-actions,
  .topbar-links {
    width: 100%;
  }

  .brand-submark {
    display: none;
  }

  .hero-card,
  .page-card {
    padding: 24px;
  }

  h1 {
    font-size: clamp(2.25rem, 10vw, 3.4rem);
  }
}

@media (max-width: 560px) {
  .button,
  .button-small {
    width: 100%;
  }

  .action-row,
  .footer-links,
  .status-row,
  .topbar-actions {
    align-items: stretch;
  }

  .showcase-copy {
    padding: 20px 20px 14px;
  }

  .showcase-image-wrap {
    margin: 0 20px 20px;
  }
}
