:root {
  --black: #000000;
  --white: #ffffff;
  --yellow: #ffff00;
  --warm-slate: #d5d5cb;
  --slate: #666666;
  --blue: #0696d7;
  --blue-dark: #057db5;
  --ink: #171717;
  --line: #d7d7d0;
  --paper: #f4f4ef;
  --green: #146c5c;
  --purple: #3c2fb8;
  --max-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--black);
  font-family: "Artifakt Element", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 12px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--black);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

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

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 32px;
  background: var(--purple);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark::after {
  position: absolute;
  right: 7px;
  bottom: -6px;
  width: 0;
  height: 0;
  border-top: 7px solid var(--purple);
  border-left: 8px solid transparent;
  content: "";
}

.brand-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
}

.site-nav a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 52px;
  padding: 13px 18px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translate(-2px, -2px);
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
}

.button-small {
  justify-self: end;
  min-height: 40px;
  padding: 8px 13px;
  gap: 16px;
  font-size: 13px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.77fr) minmax(600px, 1.23fr);
  min-height: calc(100vh - 72px);
  max-width: 1800px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 8vw, 128px) clamp(32px, 6vw, 96px);
}

.eyebrow {
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 24px;
  height: 4px;
  margin: 0 10px 2px 0;
  background: var(--yellow);
  content: "";
}

.hero h1,
.section-heading h2,
.security-title h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(58px, 6.5vw, 112px);
  font-weight: 800;
  letter-spacing: -0.067em;
  line-height: 0.88;
}

.hero h1 span,
.final-cta h2 span {
  color: var(--blue);
}

.mobile-break {
  display: none;
}

.hero-intro {
  max-width: 580px;
  margin: 38px 0 0;
  color: #353535;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.compatibility {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 32px 0 0;
  color: var(--slate);
  font-size: 12px;
  font-weight: 700;
}

.compatibility svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vw, 96px) clamp(24px, 4vw, 64px) 38px;
  background: var(--black);
}

.yellow-block {
  position: absolute;
  top: 0;
  right: 0;
  width: 27%;
  height: 31%;
  background: var(--yellow);
}

.browser-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid #555;
  background: #eef0f2;
  box-shadow: 28px 28px 0 rgba(255, 255, 255, 0.12);
}

.browser-bar {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  height: 42px;
  padding: 0 12px;
  border-bottom: 1px solid #c9cdd2;
  background: #fff;
}

.browser-controls {
  display: flex;
  gap: 6px;
}

.browser-controls span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c3c7cb;
}

.browser-address {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 26px;
  padding: 0 12px;
  background: #f2f4f5;
  color: #606970;
  font-size: 10px;
}

.browser-address svg {
  width: 13px;
  height: 13px;
}

.product-shell {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(300px, 0.75fr);
  min-height: 560px;
}

.build-area {
  background: #f4f5f6;
}

.build-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 0 16px;
  background: #25282a;
  color: #fff;
}

.build-wordmark {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.build-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #74797d;
}

.build-layout {
  display: grid;
  grid-template-columns: 42px 1fr;
  height: calc(100% - 50px);
}

.build-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-right: 1px solid #d3d7da;
  background: #fff;
}

.build-sidebar span {
  width: 15px;
  height: 15px;
  border: 2px solid #9ba2a8;
}

.build-sidebar span.selected {
  border-color: var(--blue);
  background: var(--blue);
}

.build-content {
  padding: 30px 24px;
  opacity: 0.65;
}

.skeleton-title {
  width: 45%;
  height: 25px;
  margin-bottom: 24px;
  background: #92999f;
}

.skeleton-toolbar {
  width: 100%;
  height: 36px;
  margin-bottom: 20px;
  border: 1px solid #c9ced2;
  background: #fff;
}

.skeleton-table {
  display: grid;
  gap: 10px;
}

.skeleton-table span {
  display: block;
  height: 58px;
  border: 1px solid #d8dcdf;
  background: #fff;
}

.extension-panel {
  position: relative;
  border-left: 1px solid #bfc5c9;
  background: #f7f8fa;
  color: #17212b;
  box-shadow: -14px 0 28px rgba(0, 0, 0, 0.14);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 11px 14px;
  background: #fff;
}

.panel-header > div,
.panel-title > div {
  display: grid;
  gap: 2px;
}

.panel-header strong {
  font-size: 13px;
}

.panel-kicker {
  color: #69747d;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.panel-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--blue);
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.panel-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #e1e5e8;
  border-bottom: 1px solid #d8dde1;
  background: #fff;
}

.panel-tabs span {
  padding: 12px 2px 10px;
  color: #5f6971;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
}

.panel-tabs span.active {
  border-bottom: 3px solid var(--blue);
  color: #17212b;
}

.panel-content {
  padding: 16px 14px;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-title strong {
  font-size: 14px;
}

.refresh-icon {
  color: #66727b;
  font-size: 18px;
}

.attention-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.attention-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px;
  padding: 11px;
  border: 1px solid #d8dde1;
  background: #fff;
}

.attention-card > span {
  align-self: end;
  color: #4e5962;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.attention-card strong {
  grid-row: span 2;
  font-size: 25px;
  line-height: 1;
}

.attention-card small {
  color: #7a848c;
  font-size: 8px;
}

.attention-card-primary {
  border-color: var(--blue);
  background: #edf8fc;
}

.attention-card-primary strong {
  color: var(--blue-dark);
}

.panel-section-label {
  display: flex;
  justify-content: space-between;
  margin: 22px 0 8px;
  color: #69747d;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.panel-section-label span:last-child {
  color: var(--blue-dark);
}

.rfi-card {
  display: grid;
  gap: 9px;
  padding: 12px;
  border: 1px solid #d8dde1;
  background: #fff;
}

.rfi-card > strong {
  font-size: 12px;
  line-height: 1.35;
}

.rfi-card-topline,
.rfi-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rfi-id {
  color: #56616a;
  font-size: 8px;
  font-weight: 800;
}

.status {
  padding: 2px 5px;
  background: #e5f6f2;
  color: var(--green);
  font-size: 7px;
  font-weight: 800;
}

.rfi-meta {
  justify-content: flex-start;
  gap: 8px;
}

.rfi-meta span {
  padding: 3px 5px;
  background: #f0f2f4;
  color: #5c666e;
  font-size: 7px;
  font-weight: 700;
}

.visual-caption {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  margin: 26px 0 0;
  color: #9b9b9b;
  font-size: 10px;
}

.signal-strip {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) 2.8fr;
  background: var(--black);
  color: var(--white);
}

.signal-intro {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 34px clamp(24px, 4vw, 64px);
  border-right: 1px solid #444;
}

.signal-intro p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.signal-square {
  width: 14px;
  height: 44px;
  background: var(--yellow);
}

.signal-strip dl {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
}

.signal-strip dl > div {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  min-height: 120px;
  padding: 24px;
  border-right: 1px solid #444;
}

.signal-strip dt {
  color: #aaa;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.signal-strip dd {
  margin: 0 0 5px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.features-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(100px, 12vw, 180px) clamp(24px, 6vw, 96px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  margin-bottom: clamp(90px, 12vw, 160px);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.security-title h2 {
  font-size: clamp(52px, 6vw, 88px);
}

.section-heading > p:last-child {
  max-width: 470px;
  justify-self: end;
  margin: 0 0 5px;
  color: #494949;
  font-size: 19px;
}

.feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(540px, 1.28fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
  min-height: 620px;
  padding: clamp(80px, 8vw, 128px) 0;
  border-top: 1px solid var(--black);
}

.feature-summary {
  grid-template-columns: minmax(540px, 1.28fr) minmax(280px, 0.72fr);
}

.feature-summary .feature-copy {
  grid-column: 2;
}

.feature-summary .feature-visual {
  grid-column: 1;
  grid-row: 1;
}

.feature-number {
  margin: 0 0 60px;
  color: var(--slate);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.feature-copy h3 {
  margin: 0 0 28px;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.feature-copy > p:not(.feature-number, .feature-note) {
  margin: 0;
  color: #484848;
  font-size: 18px;
}

.feature-list {
  display: grid;
  gap: 0;
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 12px 0 12px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.feature-list li::before {
  position: absolute;
  top: 18px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--blue);
  content: "";
}

.feature-note {
  margin: 30px 0 0;
  padding: 15px 0 0;
  border-top: 1px solid var(--line);
  color: var(--slate);
  font-size: 12px;
}

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

.attention-visual {
  padding: clamp(28px, 4vw, 60px);
  background: var(--yellow);
}

.queue-heading {
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 4px solid var(--black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.queue-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 110px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.45);
}

.queue-row-urgent {
  background: var(--black);
  color: var(--white);
  margin: 0 -20px;
  padding-right: 20px;
  padding-left: 20px;
  border: 0;
}

.queue-index {
  color: var(--slate);
  font-size: 11px;
  font-weight: 800;
}

.queue-row-urgent .queue-index {
  color: var(--yellow);
}

.queue-row > div {
  display: grid;
  gap: 6px;
}

.queue-row strong {
  font-size: 15px;
}

.queue-row small {
  color: var(--slate);
  font-size: 11px;
}

.queue-row-urgent small {
  color: #aaa;
}

.queue-action {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.summary-visual {
  border: 1px solid var(--black);
  background: var(--white);
  box-shadow: -22px 22px 0 var(--warm-slate);
}

.summary-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--black);
}

.spark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--black);
  color: var(--yellow);
  font-size: 24px;
}

.summary-header > div:nth-child(2) {
  display: grid;
  gap: 3px;
}

.summary-header span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.summary-header small {
  color: var(--slate);
  font-size: 10px;
}

.summary-status {
  padding: 5px 7px;
  background: #dff5ef;
  color: var(--green);
}

.summary-visual dl {
  margin: 0;
}

.summary-visual dl > div {
  display: grid;
  grid-template-columns: minmax(120px, 0.38fr) 1fr;
  gap: 24px;
  padding: 28px 24px;
  border-bottom: 1px solid var(--line);
}

.summary-visual dl > div:last-child {
  border-bottom: 0;
}

.summary-visual dt {
  color: var(--slate);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-visual dd {
  margin: 0;
  font-size: 15px;
}

.summary-visual .required-action {
  border-left: 8px solid var(--yellow);
}

.workflow-visual {
  display: grid;
  grid-template-columns: 72px 1fr;
  min-height: 470px;
  border: 1px solid var(--black);
  background: #f5f6f7;
}

.workflow-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  background: var(--black);
}

.workflow-logo {
  margin-bottom: 28px;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
}

.workflow-sidebar span:not(.workflow-logo) {
  width: 20px;
  height: 20px;
  border: 1px solid #777;
}

.workflow-sidebar span.active {
  border-color: var(--yellow);
  background: var(--yellow);
}

.workflow-content {
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 5vw, 64px);
}

.workflow-label {
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.workflow-content > strong {
  margin-bottom: 18px;
  font-size: 28px;
}

.workflow-content > p {
  margin: 0;
  padding: 20px;
  border: 1px solid #c4cbd0;
  background: #fff;
  color: #3c4851;
  font-size: 14px;
}

.attachment {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid #d4d9dd;
  background: #fff;
}

.attachment > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 42px;
  background: #e9eef1;
  color: #52616d;
  font-size: 9px;
  font-weight: 800;
}

.attachment div {
  display: grid;
}

.attachment strong {
  font-size: 11px;
}

.attachment small {
  color: var(--slate);
  font-size: 9px;
}

.workflow-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: auto;
  padding-top: 28px;
}

.workflow-actions span {
  padding: 9px 13px;
  border: 1px solid #aeb6bc;
  background: #fff;
  font-size: 10px;
  font-weight: 800;
}

.workflow-actions span:last-child {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.steps-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(500px, 1.1fr);
  gap: clamp(60px, 9vw, 140px);
  padding: clamp(100px, 12vw, 180px) clamp(24px, 7vw, 110px);
  background: var(--black);
  color: var(--white);
}

.section-heading-light {
  display: block;
  margin: 0;
}

.section-heading-light h2 {
  font-size: clamp(52px, 6vw, 88px);
}

.steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid #555;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  min-height: 150px;
  padding: 32px 0;
  border-bottom: 1px solid #555;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--yellow);
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
}

.steps h3 {
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: -0.025em;
}

.steps p {
  max-width: 440px;
  margin: 0;
  color: #aaa;
  font-size: 15px;
}

.security-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(100px, 12vw, 180px) clamp(24px, 6vw, 96px);
}

.security-title {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: end;
  margin-bottom: 100px;
}

.security-title .eyebrow {
  margin: 0;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.security-grid article {
  min-height: 340px;
  padding: 40px;
  border-right: 1px solid var(--black);
}

.security-grid article:last-child {
  border-right: 0;
}

.security-grid svg {
  width: 42px;
  height: 42px;
  margin-bottom: 70px;
}

.security-grid h3 {
  margin: 0 0 16px;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.security-grid p {
  margin: 0;
  color: #4a4a4a;
  font-size: 14px;
}

.security-policy-link {
  width: max-content;
  margin-top: 32px;
}

.final-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 110px);
  background: var(--blue);
  color: var(--black);
}

.final-cta .eyebrow::before {
  background: var(--black);
}

.final-cta h2 {
  font-size: clamp(54px, 7vw, 104px);
}

.final-cta h2 span {
  color: var(--yellow);
}

.button-yellow {
  flex: 0 0 auto;
  min-width: 270px;
  background: var(--yellow);
  color: var(--black);
}

.button-yellow:hover {
  background: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  align-items: end;
  gap: 60px;
  padding: 50px clamp(24px, 7vw, 110px);
  background: var(--black);
  color: var(--white);
}

.brand-footer .brand-mark {
  background: var(--white);
  color: var(--black);
}

.brand-footer .brand-mark::after {
  border-top-color: var(--white);
}

.site-footer p {
  margin: 0;
  color: #969696;
  font-size: 10px;
}

.footer-meta {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 10px;
  white-space: nowrap;
}

.footer-meta a {
  font-size: 12px;
  font-weight: 700;
  text-underline-offset: 4px;
}

.footer-meta a:hover {
  color: var(--yellow);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-meta p {
  white-space: nowrap;
}

.pricing-page {
  background: var(--white);
}

.pricing-hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: end;
  gap: clamp(50px, 8vw, 130px);
  padding: clamp(90px, 11vw, 170px) clamp(24px, 7vw, 110px);
  background: var(--black);
  color: var(--white);
}

.pricing-hero h1 {
  margin: 0;
  font-size: clamp(58px, 7.5vw, 118px);
  font-weight: 800;
  letter-spacing: -0.067em;
  line-height: 0.88;
}

.pricing-hero h1 span,
.pricing-cta h2 span {
  color: var(--yellow);
}

.pricing-hero-copy {
  padding-bottom: 6px;
}

.pricing-hero-copy p:first-child {
  margin: 0;
  color: #d0d0d0;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.5;
}

.pricing-hero-copy p:last-child {
  margin: 28px 0 0;
  color: #888;
  font-size: 12px;
  font-weight: 700;
}

.pricing-plans,
.pricing-included {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(90px, 11vw, 160px) clamp(24px, 7vw, 110px);
}

.pricing-section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 100px);
}

.pricing-section-heading .eyebrow {
  margin: 0;
}

.pricing-section-heading h2 {
  margin: 0;
  font-size: clamp(50px, 6vw, 88px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.price-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--black);
}

.price-card-grid-single {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  border: 0;
}

.price-card-grid-single .price-card {
  border: 1px solid var(--black);
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 680px;
  padding: clamp(30px, 4vw, 56px);
  background: var(--paper);
}

.price-card + .price-card {
  border-left: 1px solid var(--black);
}

.price-card-heading {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  min-height: 140px;
}

.price-card-number {
  margin: 5px 0 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.price-card h3 {
  margin: 0 0 10px;
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: -0.045em;
}

.price-card-heading div p {
  max-width: 390px;
  margin: 0;
  color: #484848;
  font-size: 14px;
}

.price {
  display: flex;
  align-items: flex-start;
  margin-top: 54px;
  padding-top: 32px;
  border-top: 1px solid var(--black);
}

.price-currency {
  margin: 13px 4px 0 0;
  font-size: 24px;
  font-weight: 800;
}

.price strong {
  font-size: clamp(76px, 8vw, 116px);
  letter-spacing: -0.075em;
  line-height: 0.8;
}

.price-period {
  align-self: flex-end;
  margin: 0 0 2px 18px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.annual-price {
  min-height: 48px;
  margin: 28px 0 0;
  font-size: 13px;
}

.price-feature-list {
  margin: 28px 0 42px;
  padding: 0;
  list-style: none;
}

.price-feature-list li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.22);
  font-size: 14px;
}

.price-feature-list li::before {
  position: absolute;
  top: 16px;
  left: 3px;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
  transform: rotate(-45deg);
}

.price-card-button {
  width: 100%;
  margin-top: auto;
}

.pricing-included {
  border-top: 1px solid var(--black);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
}

.included-grid article {
  min-height: 270px;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.included-grid article > span {
  display: block;
  margin-bottom: 58px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.included-grid h3 {
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.included-grid p {
  max-width: 480px;
  margin: 0;
  color: #4a4a4a;
  font-size: 14px;
}

.pricing-faq {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(60px, 8vw, 130px);
  padding: clamp(90px, 11vw, 160px) clamp(24px, 7vw, 110px);
  background: var(--black);
  color: var(--white);
}

.pricing-section-heading-light {
  display: block;
  align-self: start;
  margin: 0;
}

.pricing-section-heading-light h2 {
  font-size: clamp(50px, 5vw, 78px);
}

.faq-list {
  border-top: 1px solid #555;
}

.faq-list details {
  border-bottom: 1px solid #555;
}

.faq-list summary {
  position: relative;
  padding: 28px 50px 28px 0;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 2px;
  content: "+";
  color: var(--yellow);
  font-size: 28px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 700px;
  margin: 0;
  padding: 0 50px 28px 0;
  color: #aaa;
  font-size: 15px;
}

.pricing-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 110px);
  background: var(--blue);
}

.pricing-cta .eyebrow::before {
  background: var(--black);
}

.pricing-cta h2 {
  margin: 0;
  font-size: clamp(54px, 7vw, 104px);
  font-weight: 800;
  letter-spacing: -0.067em;
  line-height: 0.88;
}

.privacy-header {
  position: relative;
}

.privacy-home-link {
  justify-self: end;
}

.privacy-home-link svg {
  order: -1;
}

.privacy-page {
  background: var(--paper);
}

.privacy-hero {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 110px);
  border-bottom: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
}

.privacy-hero .eyebrow {
  margin: 8px 0 0;
}

.privacy-hero h1 {
  grid-column: 2;
  margin: 0;
  font-size: clamp(64px, 9vw, 136px);
  font-weight: 800;
  letter-spacing: -0.067em;
  line-height: 0.88;
}

.privacy-hero h1 span {
  color: var(--yellow);
}

.privacy-hero-summary {
  grid-column: 2;
  max-width: 720px;
  margin-top: 30px;
}

.privacy-hero-summary > p:first-child {
  margin: 0;
  color: #d0d0d0;
  font-size: clamp(18px, 1.6vw, 24px);
}

.privacy-effective-date {
  margin: 28px 0 0;
  color: #999;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
  gap: clamp(50px, 8vw, 130px);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(70px, 9vw, 130px) clamp(24px, 7vw, 110px);
}

.privacy-toc {
  align-self: start;
  position: sticky;
  top: 110px;
  padding-top: 8px;
}

.privacy-toc > p {
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.privacy-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-toc li {
  border-top: 1px solid var(--line);
}

.privacy-toc li:last-child {
  border-bottom: 1px solid var(--line);
}

.privacy-toc a {
  display: block;
  padding: 11px 0;
  color: #444;
  font-size: 13px;
  text-decoration: none;
}

.privacy-toc a:hover {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-content {
  max-width: 790px;
}

.privacy-content section {
  padding: 0 0 72px;
  scroll-margin-top: 110px;
}

.privacy-content section + section {
  padding-top: 72px;
  border-top: 1px solid var(--black);
}

.privacy-section-number {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.privacy-content h2 {
  margin: 0 0 32px;
  font-size: clamp(38px, 4vw, 62px);
  letter-spacing: -0.052em;
  line-height: 1;
}

.privacy-content h3 {
  margin: 36px 0 10px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.privacy-content p,
.privacy-content li {
  color: #353535;
  font-size: 16px;
  line-height: 1.75;
}

.privacy-content p {
  margin: 0 0 20px;
}

.privacy-content ul {
  margin: 0 0 24px;
  padding-left: 24px;
}

.privacy-content li + li {
  margin-top: 8px;
}

.privacy-content a {
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.privacy-content a:hover {
  color: var(--blue-dark);
}

.privacy-content address {
  padding: 24px;
  border-left: 6px solid var(--yellow);
  background: var(--white);
  font-style: normal;
  line-height: 1.8;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

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

  .hero-copy {
    min-height: 700px;
  }

  .hero-visual {
    min-height: 760px;
  }

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

  .signal-intro {
    border-right: 0;
    border-bottom: 1px solid #444;
  }

  .feature,
  .feature-summary {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .feature-summary .feature-copy,
  .feature-summary .feature-visual {
    grid-column: auto;
    grid-row: auto;
  }

  .feature-summary .feature-copy {
    order: 1;
  }

  .feature-summary .feature-visual {
    order: 2;
  }

  .security-title {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .privacy-hero {
    grid-template-columns: 1fr;
  }

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

  .pricing-section-heading {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .privacy-hero h1,
  .privacy-hero-summary {
    grid-column: 1;
  }

  .security-grid article {
    padding: 32px;
  }
}

@media (max-width: 800px) {
  main,
  section,
  .hero,
  .hero-copy,
  .hero-visual,
  .browser-window {
    min-width: 0;
    max-width: 100%;
  }

  .site-header {
    width: 100%;
    max-width: 100vw;
    min-height: 64px;
    padding: 10px 18px;
  }

  .brand-name {
    display: none;
  }

  .button-small {
    min-height: 38px;
  }

  .hero {
    width: 100%;
    min-height: auto;
  }

  .hero-copy {
    min-height: auto;
    padding: 76px 24px 86px;
  }

  .hero h1 {
    font-size: clamp(57px, 17vw, 82px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-visual {
    min-height: 650px;
    padding: 70px 16px 24px;
  }

  .browser-window {
    box-shadow: 14px 14px 0 rgba(255, 255, 255, 0.12);
  }

  .browser-bar {
    grid-template-columns: 45px 1fr;
  }

  .product-shell {
    grid-template-columns: 1fr;
    min-height: 520px;
  }

  .build-area {
    display: none;
  }

  .extension-panel {
    border-left: 0;
  }

  .visual-caption {
    align-self: flex-start;
  }

  .signal-strip dl {
    grid-template-columns: 1fr 1fr;
  }

  .signal-strip dl > div {
    min-height: 100px;
    border-bottom: 1px solid #444;
  }

  .signal-strip dl > div:last-child {
    grid-column: 1 / -1;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section-heading .eyebrow {
    grid-column: auto;
  }

  .section-heading > p:last-child {
    justify-self: start;
  }

  .feature {
    min-height: auto;
  }

  .queue-row {
    grid-template-columns: 30px 1fr;
  }

  .queue-action {
    display: none;
  }

  .summary-visual dl > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .workflow-visual {
    grid-template-columns: 48px 1fr;
  }

  .steps-section {
    grid-template-columns: 1fr;
  }

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

  .security-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--black);
  }

  .security-grid article:last-child {
    border-bottom: 0;
  }

  .security-grid svg {
    margin-bottom: 48px;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .button-yellow {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 35px;
  }

  .footer-meta {
    align-items: flex-start;
  }

  .privacy-header .site-nav {
    display: none;
  }

  .privacy-home-link {
    font-size: 13px;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .price-card-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: 620px;
  }

  .price-card + .price-card {
    border-top: 1px solid var(--black);
    border-left: 0;
  }

  .pricing-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-cta .button {
    width: 100%;
  }

  .privacy-toc {
    position: static;
  }
}

@media (max-width: 480px) {
  .site-header .button-small {
    gap: 7px;
    padding: 8px 10px;
  }

  .site-header .button-small svg {
    display: none;
  }

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

  .hero h1 {
    font-size: clamp(46px, 13.5vw, 54px);
    letter-spacing: -0.06em;
  }

  .mobile-break {
    display: block;
  }

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

  .features-section,
  .security-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .privacy-hero,
  .privacy-layout {
    padding-right: 20px;
    padding-left: 20px;
  }

  .pricing-hero,
  .pricing-plans,
  .pricing-included,
  .pricing-faq,
  .pricing-cta {
    padding-right: 20px;
    padding-left: 20px;
  }

  .pricing-hero h1 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .price-card {
    min-height: 0;
    padding: 28px 20px;
  }

  .price-card-heading {
    grid-template-columns: 30px 1fr;
  }

  .price strong {
    font-size: clamp(76px, 25vw, 108px);
  }

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

  .included-grid article {
    min-height: 230px;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }

  .privacy-hero h1 {
    font-size: clamp(58px, 22vw, 88px);
  }

  .privacy-content section {
    padding-bottom: 54px;
  }

  .privacy-content section + section {
    padding-top: 54px;
  }

  .attention-visual {
    margin: 0 -20px;
    padding: 28px 20px;
  }

  .summary-visual {
    box-shadow: -10px 10px 0 var(--warm-slate);
  }

  .summary-header {
    grid-template-columns: auto 1fr;
  }

  .summary-status {
    display: none;
  }

  .workflow-content {
    padding: 24px 16px;
  }

  .workflow-actions {
    flex-direction: column-reverse;
  }

  .workflow-actions span {
    text-align: center;
  }
}

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

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