:root {
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-cool: #f1f5f9;
  --surface: #ffffff;
  --text: #07112d;
  --muted: #64748b;
  --line: #dbe4ff;
  --line-soft: #edf2ff;
  --brand-deep: #111827;
  --brand-ink: #0b124c;
  --brand: #4f46e5;
  --brand-2: #6157ff;
  --green: #22c55e;
  --green-soft: #ecfdf5;
  --amber: #f59e0b;
  --shadow-sm: 0 12px 32px rgba(17, 24, 39, 0.07);
  --shadow-lg: 0 24px 70px rgba(79, 70, 229, 0.14);
  --radius: 8px;
  --container: 1440px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

body.feature-dialog-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(79, 70, 229, 0.16);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--brand);
  color: #ffffff;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms var(--ease);
}

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

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

.section {
  padding: 92px 0;
}

main section[id] {
  scroll-margin-top: 94px;
}

.site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.04);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 78px;
  align-items: center;
  gap: 28px;
}

.logo-lockup {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 0;
  color: var(--brand-ink);
}

.logo-inline {
  width: 188px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: #475569;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  content: "";
  opacity: 0;
  transform: scaleX(0.55);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--brand-ink);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

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

.nav-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--text);
}

.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 200ms var(--ease);
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

.nav-open .nav-toggle span:first-child {
  transform: rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 16px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 180ms var(--ease),
    background 180ms var(--ease),
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

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

.btn:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(79, 70, 229, 0.22);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--brand);
  box-shadow: 0 14px 32px rgba(79, 70, 229, 0.22);
  color: #ffffff;
}

.btn-primary:hover {
  background: #4338ca;
}

.btn-secondary,
.btn-ghost {
  border-color: var(--line);
  background: #ffffff;
  color: var(--brand-ink);
}

.btn-secondary:hover,
.btn-ghost:hover {
  border-color: #c7d2fe;
  background: #eef2ff;
}

.btn-large {
  min-height: 50px;
  padding-inline: 20px;
  font-size: 15px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 88px;
  background: #ffffff;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.56), transparent 80%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(470px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: 52px;
}

.hero-logo-lockup {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.hero-logo-mark {
  display: block;
  filter: drop-shadow(0 18px 36px rgba(79, 70, 229, 0.18));
  animation: float-mark 6s ease-in-out infinite;
}

.hero-logo-mark img {
  width: 126px;
  height: 126px;
  object-fit: contain;
}

.hero-copy h1 {
  margin: 0;
  color: var(--brand-ink);
  font-size: clamp(58px, 5.6vw, 84px);
  font-weight: 950;
  line-height: 0.95;
}

.hero-tagline {
  margin: 12px 0 0;
  color: var(--brand-ink);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.18;
}

.hero-tagline span {
  color: var(--brand);
}

.hero-tagline strong {
  color: var(--green);
  font-weight: 600;
}

.brand-rule {
  display: grid;
  width: min(480px, 100%);
  grid-template-columns: 1fr 0.76fr 0.76fr;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
  padding-right: 72px;
}

.brand-rule i {
  display: block;
  height: 8px;
  animation: rule-grow 860ms var(--ease) both;
  transform-origin: left;
}

.brand-rule i:nth-child(1) {
  background: var(--brand);
}

.brand-rule i:nth-child(2) {
  background: var(--brand-ink);
  animation-delay: 90ms;
}

.brand-rule i:nth-child(3) {
  background: var(--green);
  animation-delay: 180ms;
}

.hero-lede {
  max-width: 640px;
  margin: 28px 0 0;
  color: #475569;
  font-size: 19px;
  line-height: 1.68;
}

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

.endpoint-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  max-width: 620px;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  padding: 9px 10px 9px 14px;
}

.endpoint-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.endpoint-strip code {
  min-width: 0;
  overflow: hidden;
  color: var(--brand-ink);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-button {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--bg-soft);
  color: var(--brand-ink);
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 900;
}

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

.photo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.02);
  transition: transform 900ms var(--ease), filter 320ms var(--ease);
}

.photo-card:hover img {
  filter: saturate(1) contrast(1.06);
  transform: scale(1.06);
}

.photo-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 17, 45, 0.72) 100%);
  content: "";
}

.photo-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 15px;
  z-index: 1;
  margin: 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.42;
}

.hero-photo-card {
  min-height: 500px;
}

.product-console {
  display: grid;
  min-height: 500px;
  grid-template-columns: 148px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-lg);
  animation: console-depth 7s ease-in-out infinite;
}

.console-sidebar {
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
  padding: 18px 12px;
}

.console-sidebar img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.console-nav {
  display: grid;
  gap: 7px;
  margin-top: 28px;
}

.console-nav span {
  border-radius: var(--radius);
  color: var(--muted);
  padding: 10px 11px;
  font-size: 13px;
  font-weight: 900;
}

.console-nav span.is-active {
  background: #eef2ff;
  color: var(--brand);
}

.console-main {
  min-width: 0;
  padding: 20px;
}

.console-topbar,
.ops-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.console-topbar strong,
.console-topbar span {
  display: block;
}

.console-topbar strong {
  color: var(--text);
  font-size: 18px;
  line-height: 1.2;
}

.console-topbar span {
  margin-top: 2px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 800;
}

.console-topbar button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: #475569;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 900;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.metric-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 13px;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.metric-grid article:hover {
  box-shadow: 0 16px 38px rgba(79, 70, 229, 0.12);
  transform: translateY(-2px);
}

.metric-grid span,
.metric-grid strong,
.metric-grid em {
  display: block;
}

.metric-grid span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.metric-grid strong {
  margin-top: 8px;
  color: var(--text);
  font-size: 26px;
  font-weight: 950;
  line-height: 1;
}

.metric-grid em {
  margin-top: 6px;
  color: #059669;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.demo-tabs {
  display: flex;
  gap: 6px;
  margin-top: 20px;
  border-bottom: 1px solid var(--line);
}

.demo-tabs button {
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--muted);
  padding: 10px 9px;
  font-size: 13px;
  font-weight: 950;
}

.demo-tabs button.is-active {
  border-color: var(--brand);
  color: var(--brand);
}

.demo-pane {
  display: none;
  padding-top: 15px;
}

.demo-pane.is-active {
  display: block;
}

.submission-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.table-head,
.submission-row {
  display: grid;
  grid-template-columns: minmax(132px, 1.4fr) minmax(82px, 0.8fr) 54px 64px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
}

.table-head {
  min-height: 38px;
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
}

.submission-row {
  min-height: 68px;
  border-top: 1px solid #f1f5f9;
  color: #475569;
  font-size: 13px;
}

.submission-row strong,
.submission-row small {
  display: block;
}

.submission-row strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 950;
}

.submission-row small {
  color: #94a3b8;
  font-size: 11px;
}

.submission-row mark,
.submission-row b {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 950;
}

.submission-row mark {
  background: #dcfce7;
  color: #047857;
}

.submission-row mark.lime {
  background: #ecfccb;
  color: #4d7c0f;
}

.submission-row mark.amber {
  background: #fef3c7;
  color: #b45309;
}

.submission-row b {
  background: #ecfdf5;
  color: #047857;
}

.submission-row b.muted {
  background: #fff7ed;
  color: #c2410c;
}

.code-preview,
.application-copy pre,
.value-card pre {
  overflow: auto;
  border-radius: 12px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.code-preview {
  min-height: 265px;
  margin: 0;
  background: #07112d;
  color: #86efac;
  padding: 18px;
  font-size: 12px;
  line-height: 1.7;
}

.action-stack {
  display: grid;
  gap: 12px;
}

.action-stack div {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 14px 14px 14px 38px;
}

.action-stack div::before {
  position: absolute;
  left: 14px;
  top: 19px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 5px #eef2ff;
  content: "";
}

.action-stack strong,
.action-stack span {
  display: block;
}

.action-stack strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 950;
}

.action-stack span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.brand-board-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(79, 70, 229, 0.08), transparent 29%),
    radial-gradient(circle at 78% 34%, rgba(34, 197, 94, 0.1), transparent 30%),
    #ffffff;
}

.board-top {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: center;
  gap: 42px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 42px;
}

.board-lockup {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  align-items: center;
  gap: 38px;
}

.board-lockup img {
  width: 176px;
  filter: drop-shadow(0 20px 40px rgba(79, 70, 229, 0.18));
  animation: float-mark 6s ease-in-out infinite;
}

.board-lockup h2 {
  margin: 0;
  color: var(--brand-ink);
  font-size: clamp(44px, 5vw, 78px);
  font-weight: 950;
  line-height: 1;
}

.board-lockup h2 span {
  color: var(--brand);
}

.board-lockup h2 strong {
  color: var(--green);
  font-weight: 950;
}

.board-lockup p,
.purpose-card p,
.section-heading p,
.security-copy p,
.access-panel p {
  color: #64748b;
  line-height: 1.7;
}

.board-lockup p,
.purpose-card p {
  margin: 18px 0 0;
  font-size: 17px;
}

.purpose-card {
  border-left: 1px solid #c7d2fe;
  padding-left: 36px;
}

.purpose-icons {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--brand);
}

.purpose-icons svg,
.feature-list svg,
.brand-values svg,
.action-band svg {
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.purpose-icons svg {
  width: 56px;
  height: 56px;
}

.purpose-icons svg:last-child {
  color: var(--green);
}

.purpose-card h3,
.value-card h3,
.brand-values h3,
.does-strip h3 {
  margin: 0;
  color: #1d2be3;
  font-size: 20px;
  font-weight: 950;
  text-transform: uppercase;
}

.value-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(330px, 0.92fr);
  gap: 22px;
  margin-top: 28px;
}

.value-card,
.brand-values,
.does-strip,
.application-card,
.price-card,
.connect-panel,
.ops-panel,
.access-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.value-card {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  padding: 28px;
}

.value-card-green {
  background: linear-gradient(135deg, #ffffff 0%, #effdf5 100%);
}

.value-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #ffffff;
}

.value-icon.indigo {
  background: var(--brand);
}

.value-icon.green {
  background: var(--green);
}

.value-icon svg {
  width: 32px;
  height: 32px;
}

.value-card p {
  margin: 12px 0 20px;
  color: #1e293b;
  font-size: 16px;
  line-height: 1.6;
}

.value-card pre {
  margin: auto 0 16px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--brand);
  padding: 18px;
  font-size: 12px;
  line-height: 1.7;
}

.value-card small {
  color: var(--brand-ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.world-card {
  margin: auto 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  padding: 20px;
}

.world-card span,
.world-card strong {
  display: block;
}

.world-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.world-card strong {
  margin-top: 8px;
  color: var(--brand-ink);
  font-size: 36px;
  font-weight: 950;
}

.world-card svg {
  width: 100%;
  height: 64px;
  margin-top: 8px;
}

.world-card path {
  fill: none;
  stroke: var(--green);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 260;
  animation: draw-line 2.4s ease-in-out infinite alternate;
}

.brand-values {
  display: grid;
  padding: 26px;
}

.brand-values > div {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border-top: 1px solid #cbd5e1;
  padding: 16px 0;
}

.brand-values > div:first-of-type {
  margin-top: 8px;
}

.brand-values span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--brand);
  border-radius: 999px;
  color: var(--brand);
}

.brand-values p {
  margin: 0;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.45;
}

.brand-values strong {
  display: block;
  color: var(--brand-ink);
  font-size: 16px;
  font-weight: 950;
}

.does-strip {
  margin-top: 26px;
  padding: 26px;
}

.does-strip h3,
.action-band h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.does-strip h3::before,
.does-strip h3::after,
.action-band h2::before,
.action-band h2::after {
  display: block;
  height: 1px;
  flex: 1;
  content: "";
}

.does-strip h3::before,
.does-strip h3::after {
  background: #c7d2fe;
}

.does-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 24px;
}

.does-grid article {
  display: grid;
  gap: 10px;
  border-left: 1px solid var(--line);
  padding: 4px 20px 8px;
}

.does-grid article:first-child {
  border-left: 0;
}

.does-grid span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 12px;
  background: #eef2ff;
  color: var(--brand);
  font-size: 15px;
  font-weight: 950;
}

.does-grid strong {
  color: var(--brand-ink);
  font-size: 14px;
  font-weight: 950;
  line-height: 1.35;
}

.does-grid p {
  margin: 0;
  color: #475569;
  font-size: 12px;
  line-height: 1.55;
}

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

.section-heading h2,
.security-copy h2,
.access-panel h2 {
  margin: 0;
  color: var(--text);
  font-size: 42px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.08;
}

.section-heading p,
.security-copy p,
.access-panel p {
  margin: 16px 0 0;
  font-size: 17px;
}

.workflow-band {
  background: var(--bg-soft);
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.74fr) minmax(0, 1.26fr);
  align-items: start;
  gap: 54px;
  margin-top: 46px;
}

.workflow-steps {
  display: grid;
  gap: 16px;
}

.workflow-steps article {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  column-gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.workflow-steps span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 950;
}

.workflow-steps h3,
.feature-list h3,
.price-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.25;
}

.workflow-steps p,
.feature-list p,
.price-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.workflow-steps p {
  grid-column: 2;
}

.workflow-media-stack {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(350px, 1.28fr);
  gap: 18px;
  align-items: stretch;
}

.workflow-photo-card {
  min-height: 100%;
}

.connect-panel {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 18px;
}

.mini-browser {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #cbd5e1;
}

.sample-form {
  display: grid;
  gap: 12px;
}

.sample-form label {
  display: grid;
  gap: 6px;
  color: #475569;
  font-size: 12px;
  font-weight: 950;
}

.sample-form input,
.sample-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--text);
  padding: 11px 12px;
  font-size: 14px;
  resize: none;
}

.sample-form textarea {
  min-height: 84px;
}

.sample-form button {
  min-height: 45px;
  border: 0;
  border-radius: var(--radius);
  background: var(--brand-ink);
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
}

.inbox-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 10px;
  align-items: start;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  background: #f0fdf4;
  padding: 13px;
}

.inbox-card .status-dot {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 999px;
  background: var(--green);
}

.inbox-card strong {
  color: #166534;
  font-size: 14px;
  font-weight: 950;
}

.inbox-card p {
  grid-column: 2;
  margin: 0;
  color: #15803d;
  font-size: 13px;
  line-height: 1.55;
}

.flow-arrow {
  display: none;
}

.split-section,
.security-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.feature-list svg {
  width: 36px;
  height: 36px;
  color: var(--brand);
}

.security-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.ops-panel {
  padding: 10px;
}

.ops-row {
  border-radius: var(--radius);
  padding: 16px;
}

.ops-row + .ops-row {
  border-top: 1px solid #f1f5f9;
}

.ops-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
}

.ops-row strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 950;
  text-align: right;
}

.security-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.security-points span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: #475569;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 900;
}

.applications-section {
  background: #ffffff;
}

.application-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.05fr) minmax(300px, 0.9fr);
  gap: 22px;
  margin-top: 42px;
}

.application-card {
  overflow: hidden;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}

.application-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.application-media {
  height: 228px;
  overflow: hidden;
}

.application-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.application-copy {
  padding: 24px;
}

.application-copy span {
  color: #1d2be3;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.application-copy h3 {
  margin: 9px 0 0;
  color: var(--brand-ink);
  font-size: 24px;
  font-weight: 950;
  line-height: 1.16;
}

.application-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.application-copy pre {
  margin: 18px 0 0;
  background: #07112d;
  color: #86efac;
  padding: 16px;
  font-size: 12px;
  line-height: 1.65;
}

.dashboard-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.dashboard-mini {
  display: grid;
  grid-template-columns: 76px 1fr;
  min-height: 292px;
  margin: 0 20px 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-soft);
}

.dashboard-mini-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  background: #07112d;
  padding: 16px 14px;
}

.dashboard-mini-sidebar img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.dashboard-mini-sidebar i {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.dashboard-mini-main {
  padding: 18px;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.mini-stats strong {
  border-radius: 9px;
  background: #ffffff;
  color: var(--brand-ink);
  padding: 12px 8px;
  font-size: 14px;
  font-weight: 950;
  text-align: center;
}

.mini-table {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.mini-table span {
  height: 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, #dbe4ff, #ffffff);
}

.email-card {
  position: relative;
  min-height: 538px;
}

.email-card .application-media {
  height: 100%;
  min-height: 538px;
}

.email-preview {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
  padding: 20px;
}

.email-preview span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
}

.email-preview strong {
  display: block;
  margin-top: 8px;
  color: var(--brand-ink);
  font-size: 21px;
  font-weight: 950;
}

.email-preview p {
  color: #334155;
  font-size: 14px;
  line-height: 1.65;
}

.email-preview a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 8px;
  background: var(--brand);
  color: #ffffff;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 950;
}

.pricing-section {
  background: #ffffff;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    #ffffff;
  background-size: 44px 44px;
}

.pricing-hero {
  padding: 78px 0 92px;
}

.pricing-hero-layout {
  display: grid;
  grid-template-columns: minmax(440px, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: center;
}

.pricing-hero-copy h1 {
  margin: 0;
  color: var(--brand-ink);
  font-size: clamp(58px, 6.8vw, 96px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.96;
}

.pricing-hero-copy p {
  max-width: 700px;
  margin: 26px 0 0;
  color: #475569;
  font-size: 19px;
  line-height: 1.72;
}

.pricing-hero-visual {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(280px, 0.38fr);
  gap: 18px;
  align-items: stretch;
}

.pricing-hero-photo {
  min-height: 460px;
}

.recommended-rail {
  display: grid;
  align-content: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7ff 100%);
  box-shadow: var(--shadow-lg);
  padding: 24px;
}

.recommended-rail h2 {
  margin: 0 0 4px;
  color: var(--brand-ink);
  font-size: 24px;
  font-weight: 950;
  line-height: 1.12;
}

.recommended-rail div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.recommended-rail strong,
.recommended-rail span {
  display: block;
}

.recommended-rail strong {
  color: var(--text);
  font-size: 16px;
  font-weight: 950;
}

.recommended-rail span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.5;
}

.recommended-rail .is-recommended strong {
  color: var(--brand);
}

.pricing-detail-section {
  background: var(--bg-soft);
}

.plan-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.plan-detail-card {
  min-height: 620px;
}

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

.pricing-more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.price-card {
  display: flex;
  min-height: 462px;
  flex-direction: column;
  padding: 26px;
}

.price-card.featured {
  border-color: #c7d2fe;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7ff 100%);
  box-shadow: 0 22px 50px rgba(79, 70, 229, 0.14);
}

.card-label {
  width: fit-content;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.price {
  margin-top: 24px;
  color: var(--brand-ink);
  font-size: 38px;
  font-weight: 950;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.price-card > strong {
  display: block;
  margin-top: 9px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 950;
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 18px;
  color: #475569;
  font-size: 14px;
  line-height: 1.55;
}

.price-card li::before {
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

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

.comparison-section {
  background: #ffffff;
}

.comparison-shell {
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.comparison-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #f8fafc 0%, #eef2ff 100%);
  padding: 18px 22px;
}

.comparison-note strong,
.comparison-note span {
  display: block;
}

.comparison-note strong {
  color: var(--brand-ink);
  font-size: 16px;
  font-weight: 950;
}

.comparison-note span {
  max-width: 720px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.55;
}

.feature-table-wrap {
  overflow-x: auto;
}

.feature-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  text-align: left;
}

.feature-table th,
.feature-table td {
  border-bottom: 1px solid #eef2ff;
  padding: 15px 18px;
  vertical-align: middle;
}

.feature-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #ffffff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-table thead th:first-child {
  left: 0;
  z-index: 3;
}

.feature-table tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
  width: 28%;
  min-width: 260px;
  background: #ffffff;
  color: var(--text);
  font-size: 14px;
  font-weight: 950;
  line-height: 1.35;
}

.feature-table tbody tr:hover th {
  background: #f8fafc;
}

.feature-table td {
  color: #475569;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.feature-table tbody tr:hover {
  background: #f8fafc;
}

.feature-icon {
  position: relative;
  display: inline-flex;
  min-width: 74px;
  height: 34px;
  align-items: center;
  justify-content: flex-start;
  border-radius: 999px;
  padding: 0 12px 0 34px;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  vertical-align: middle;
}

.feature-icon::before,
.feature-icon.no::after {
  position: absolute;
  content: "";
}

.feature-icon.yes {
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.feature-icon.yes::before {
  left: 12px;
  top: 50%;
  width: 12px;
  height: 7px;
  border-bottom: 3px solid #16a34a;
  border-left: 3px solid #16a34a;
  transform: translateY(-62%) rotate(-45deg);
}

.feature-icon.yes::after {
  content: "Yes";
}

.feature-icon.no {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.feature-icon.no::before {
  left: 12px;
  top: 50%;
  width: 14px;
  height: 14px;
  background:
    linear-gradient(45deg, transparent 42%, #dc2626 42%, #dc2626 58%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, #dc2626 42%, #dc2626 58%, transparent 58%);
  transform: translateY(-50%);
}

.feature-icon.no::after {
  position: static;
  content: "No";
}

.feature-name {
  display: flex;
  align-items: center;
  gap: 9px;
}

.feature-name-text {
  min-width: 0;
}

.feature-info {
  position: relative;
  display: inline-grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #c7d2fe;
  border-radius: 999px;
  background: #eef2ff;
  color: var(--brand);
  padding: 0;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
}

.feature-info:hover,
.feature-info:focus-visible {
  border-color: var(--brand);
  background: var(--brand);
  color: #ffffff;
}

.feature-tooltip {
  position: fixed;
  z-index: 120;
  max-width: min(320px, calc(100vw - 28px));
  border: 1px solid rgba(199, 210, 254, 0.7);
  border-radius: var(--radius);
  background: #07112d;
  box-shadow: 0 18px 42px rgba(7, 17, 45, 0.22);
  color: #ffffff;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.5;
  pointer-events: none;
}

.feature-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  background: rgba(7, 17, 45, 0.48);
  padding: 20px;
}

.feature-dialog-backdrop[hidden],
.feature-tooltip[hidden] {
  display: none;
}

.feature-dialog {
  position: relative;
  width: min(520px, 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(7, 17, 45, 0.26);
  padding: 28px;
}

.feature-dialog-kicker {
  display: block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-dialog h2 {
  margin: 9px 36px 0 0;
  color: var(--brand-ink);
  font-size: 26px;
  font-weight: 950;
  line-height: 1.14;
}

.feature-dialog p {
  margin: 14px 0 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
}

.feature-dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--brand-ink);
  padding: 0;
  font-size: 15px;
  font-weight: 950;
}

.feature-dialog-close:hover {
  border-color: #c7d2fe;
  background: #eef2ff;
}

.feature-status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.feature-status.included {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.feature-status.limited {
  border-color: #fed7aa;
  background: #fff7ed;
  color: #c2410c;
}

.feature-status.planned {
  border-color: #c7d2fe;
  background: #eef2ff;
  color: var(--brand);
}

.pricing-roadmap-section {
  background:
    radial-gradient(circle at 12% 30%, rgba(79, 70, 229, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.roadmap-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(0, 1.32fr);
  gap: 52px;
  align-items: start;
}

.roadmap-list {
  display: grid;
  gap: 14px;
}

.roadmap-list article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 10px 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.roadmap-list span {
  grid-row: span 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
}

.roadmap-list h3 {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.25;
}

.roadmap-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.action-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 42%, rgba(34, 197, 94, 0.34), transparent 28%),
    linear-gradient(135deg, #4f46e5 0%, #1d2be3 45%, #07112d 100%);
  color: #ffffff;
  padding: 62px 0 90px;
}

.action-band::after {
  position: absolute;
  right: -8%;
  bottom: -102px;
  width: 72%;
  height: 190px;
  border-top: 16px solid rgba(255, 255, 255, 0.94);
  border-radius: 100% 0 0 0;
  content: "";
  transform: rotate(-3deg);
}

.action-band h2 {
  margin: 0;
  color: #ffffff;
  font-size: 30px;
  font-weight: 950;
  text-transform: uppercase;
}

.action-band h2::before,
.action-band h2::after {
  background: rgba(255, 255, 255, 0.68);
}

.action-value-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.action-value-grid svg {
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
}

.action-value-grid h3 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
}

.action-value-grid p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.55;
}

.access-section {
  padding-top: 74px;
  background: var(--bg-soft);
}

.access-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 246px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px 430px 42px 42px;
}

.access-panel > div,
.access-actions {
  position: relative;
  z-index: 2;
}

.access-panel > div {
  max-width: 680px;
}

.access-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.access-image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 390px;
  margin: 0;
}

.access-image::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.78) 28%, rgba(255, 255, 255, 0.04) 100%);
  content: "";
}

.access-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-shell {
  padding: 64px 0 28px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 42px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 54px;
}

.footer-columns nav {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-columns h2 {
  margin: 0 0 10px;
  color: #64748b;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-columns a {
  color: #334155;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.3;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.footer-columns a:hover {
  color: var(--brand);
  transform: translateX(3px);
}

.footer-brand-panel {
  display: grid;
  justify-items: center;
  max-width: 760px;
  margin: 48px auto 0;
  text-align: center;
}

.footer-main-brand {
  justify-content: center;
}

.footer-main-brand .logo-inline {
  width: 248px;
}

.footer-brand-panel p {
  margin: 22px 0 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.72;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--brand-ink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  transition: background 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}

.footer-socials a:hover {
  background: var(--brand);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-bottom {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-top: 42px;
}

.footer-bottom p,
.site-footer .photo-credit {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.65;
  text-align: center;
}

.site-footer .photo-credit {
  max-width: 980px;
}

.site-footer .photo-credit a {
  color: var(--brand);
  font-weight: 900;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  animation: fade-rise 640ms var(--ease) both;
}

@keyframes fade-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-mark {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes rule-grow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes console-depth {
  0%,
  100% {
    box-shadow: var(--shadow-lg);
  }
  50% {
    box-shadow: 0 32px 82px rgba(79, 70, 229, 0.18);
  }
}

@keyframes draw-line {
  from {
    stroke-dashoffset: 260;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 1180px) {
  .hero-grid,
  .workflow-layout,
  .split-section,
  .security-grid,
  .pricing-hero-layout,
  .roadmap-layout {
    grid-template-columns: 1fr;
  }

  .hero-product {
    max-width: 980px;
  }

  .pricing-hero-visual {
    max-width: 980px;
  }

  .board-top,
  .value-grid,
  .application-grid,
  .action-value-grid {
    grid-template-columns: 1fr 1fr;
  }

  .purpose-card {
    border-left: 0;
    border-top: 1px solid #c7d2fe;
    padding: 30px 0 0;
  }

  .brand-values,
  .email-card {
    grid-column: 1 / -1;
  }

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

  .does-grid article:nth-child(4) {
    border-left: 0;
  }

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

  .plan-detail-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: auto;
  }

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

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

  .section {
    padding: 64px 0;
  }

  main section[id] {
    scroll-margin-top: 86px;
  }

  .site-header {
    background: #ffffff;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    min-height: 72px;
    justify-content: space-between;
  }

  .logo-inline {
    width: 174px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav,
  .nav-actions {
    position: fixed;
    left: 14px;
    right: 14px;
    z-index: 60;
    display: none;
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: var(--shadow-lg);
  }

  .site-nav {
    top: 82px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-radius: 14px 14px 0 0;
    padding: 12px;
  }

  .site-nav a {
    border-radius: var(--radius);
    padding: 13px 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-actions {
    top: 340px;
    grid-template-columns: 1fr 1fr;
    border-top: 0;
    border-radius: 0 0 14px 14px;
    padding: 12px;
  }

  .nav-open .site-nav,
  .nav-open .nav-actions {
    display: grid;
  }

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

  .pricing-hero {
    padding: 58px 0 68px;
  }

  .hero-logo-lockup {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
  }

  .hero-logo-mark img {
    width: 82px;
    height: 82px;
  }

  .hero-copy h1 {
    font-size: 48px;
  }

  .hero-tagline {
    font-size: 22px;
  }

  .brand-rule {
    width: min(330px, 100%);
    padding-right: 40px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .pricing-hero-copy h1 {
    font-size: 52px;
  }

  .pricing-hero-copy p {
    font-size: 17px;
  }

  .endpoint-strip {
    grid-template-columns: 1fr auto;
  }

  .endpoint-strip span {
    display: none;
  }

  .hero-product,
  .pricing-hero-visual,
  .workflow-media-stack,
  .board-top,
  .board-lockup,
  .value-grid,
  .application-grid,
  .action-value-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .hero-photo-card,
  .pricing-hero-photo,
  .workflow-photo-card {
    min-height: 210px;
  }

  .recommended-rail {
    align-content: start;
  }

  .product-console {
    grid-template-columns: 1fr;
    min-height: auto;
    animation: none;
  }

  .console-sidebar {
    display: none;
  }

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

  .table-head,
  .submission-row {
    grid-template-columns: minmax(150px, 1fr) 64px 76px;
  }

  .table-head span:nth-child(2),
  .submission-row > span:nth-child(2) {
    display: none;
  }

  .board-lockup {
    gap: 22px;
  }

  .board-lockup img {
    width: 126px;
  }

  .board-lockup h2 {
    font-size: 40px;
  }

  .value-card {
    min-height: auto;
  }

  .does-strip h3::before,
  .does-strip h3::after {
    display: none;
  }

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

  .does-grid article,
  .does-grid article:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 18px 0;
  }

  .does-grid article:first-child {
    border-top: 0;
  }

  .section-heading h2,
  .security-copy h2,
  .access-panel h2 {
    font-size: 32px;
  }

  .application-media,
  .email-card .application-media {
    height: 230px;
    min-height: 230px;
  }

  .email-card {
    min-height: auto;
  }

  .email-preview {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -48px 18px 18px;
  }

  .dashboard-mini {
    grid-template-columns: 1fr;
  }

  .dashboard-mini-sidebar {
    display: none;
  }

  .mini-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .comparison-note {
    display: grid;
  }

  .feature-table {
    min-width: 860px;
  }

  .action-band h2::before,
  .action-band h2::after {
    display: none;
  }

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

  .action-value-grid svg {
    width: 42px;
    height: 42px;
    margin: 0;
  }

  .access-panel {
    display: grid;
    padding: 0;
  }

  .access-panel > div,
  .access-actions {
    padding-inline: 24px;
  }

  .access-panel > div {
    padding-top: 24px;
  }

  .access-actions {
    justify-content: flex-start;
    padding-bottom: 26px;
  }

  .access-image {
    position: relative;
    inset: auto;
    order: -1;
    width: 100%;
    height: 176px;
  }

  .access-image::before {
    background: linear-gradient(180deg, transparent 38%, rgba(255, 255, 255, 0.94) 100%);
  }

  .footer-shell {
    padding-top: 46px;
  }

  .footer-main-brand .logo-inline {
    width: 220px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 54px 0;
  }

  .hero-copy h1 {
    font-size: 39px;
  }

  .hero-tagline {
    font-size: 18px;
  }

  .pricing-hero-copy h1 {
    font-size: 44px;
  }

  .hero-actions,
  .access-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .console-main,
  .value-card,
  .brand-values,
  .application-copy,
  .does-strip,
  .price-card,
  .recommended-rail {
    padding: 18px;
  }

  .comparison-note {
    padding: 16px;
  }

  .feature-table {
    min-width: 760px;
  }

  .feature-table th,
  .feature-table td {
    padding: 13px 14px;
  }

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

  .metric-grid article {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
  }

  .metric-grid strong {
    margin: 0;
    font-size: 22px;
  }

  .metric-grid em {
    display: none;
  }

  .table-head,
  .submission-row {
    grid-template-columns: minmax(0, 1fr) 58px;
    gap: 8px;
    padding-inline: 10px;
  }

  .table-head span:nth-child(4),
  .submission-row b {
    display: none;
  }

  .workflow-steps article,
  .feature-list article {
    grid-template-columns: 1fr;
  }

  .workflow-steps p {
    grid-column: auto;
  }

  .ops-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .ops-row strong {
    text-align: left;
  }

  .roadmap-list article {
    grid-template-columns: 1fr;
  }

  .roadmap-list span {
    grid-row: auto;
  }

  .price {
    font-size: 34px;
  }

  .footer-main-brand .logo-inline {
    width: 200px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
