:root {
  color-scheme: light;
  --ink: #171813;
  --graphite: #58534d;
  --paper: #f7f5ed;
  --paper-soft: #fffbeb;
  --white: #ffffff;
  --mustard: #d4a017;
  --mustard-hover: #e8b72c;
  --mustard-strong: #93650b;
  --mustard-soft: #fef3c7;
  --spark: #14b8a6;
  --muted: #6c6a60;
  --line: #e4e0d3;
  --line-strong: #cec6b3;
  --success: #2d7a55;
  --info: #287c78;
  --content: 1180px;
  --section-pad: clamp(76px, 8vw, 124px);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Plus Jakarta Sans",
    "Avenir Next",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

::selection {
  color: var(--ink);
  background: var(--mustard-soft);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--mustard);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-180%);
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  min-height: 80px;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  padding: 0 clamp(22px, 4.5vw, 76px);
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  color: var(--white);
}

.wordmark,
.footer-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.7vw, 42px);
  font-size: 0.875rem;
  font-weight: 700;
}

.primary-nav a,
.signin-link {
  text-decoration: none;
  text-underline-offset: 6px;
}

.primary-nav a:hover,
.signin-link:hover {
  text-decoration: underline;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.signin-link {
  font-size: 0.875rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.925rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 160ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 160ms cubic-bezier(0.4, 0, 0.2, 1),
    color 160ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 160ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.button-small {
  min-height: 40px;
  padding: 0 15px;
  font-size: 0.82rem;
}

.button-primary {
  border-color: var(--mustard);
  color: var(--ink);
  background: var(--mustard);
}

.button-primary:hover {
  border-color: var(--mustard-hover);
  background: var(--mustard-hover);
}

.button-ghost {
  border-color: rgb(255 255 255 / 48%);
  color: var(--white);
  background: rgb(23 24 19 / 18%);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: rgb(255 255 255 / 78%);
  background: rgb(23 24 19 / 34%);
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(900px, 100svh);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background-color: var(--ink);
  background-image: url("/assets/worklific-hero.jpg");
  background-position: center;
  background-size: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(10 13 12 / 92%) 0%, rgb(10 13 12 / 78%) 37%, rgb(10 13 12 / 12%) 78%),
    linear-gradient(0deg, rgb(10 13 12 / 48%) 0%, transparent 44%);
}

.hero-content {
  width: min(760px, 58vw);
  margin-left: max(7vw, calc((100vw - var(--content)) / 2));
  padding: 132px 0 96px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--mustard-strong);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--mustard-soft);
}

.status-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--spark);
  box-shadow: 0 0 0 4px rgb(20 184 166 / 22%);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.25rem, 5.5vw, 5.9rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 32px;
  color: rgb(255 255 255 / 82%);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-note {
  margin: 18px 0 0;
  color: rgb(255 255 255 / 62%);
  font-size: 0.78rem;
  font-weight: 650;
}

.hero-caption {
  position: absolute;
  right: clamp(22px, 4.5vw, 76px);
  bottom: 24px;
  margin: 0;
  color: rgb(255 255 255 / 68%);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.section {
  padding: var(--section-pad) max(6vw, calc((100vw - var(--content)) / 2));
}

.section-intro {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.7fr);
  gap: clamp(42px, 7vw, 110px);
  margin-bottom: 52px;
}

.section-heading-wide {
  align-items: start;
}

.section-heading h2,
.section-intro h2 {
  max-width: 790px;
}

.section-heading > p,
.section-heading-wide > p,
.section-intro .section-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
  line-height: 1.75;
}

.section-intro .section-heading {
  margin-bottom: 0;
}

.assistants-section {
  background: var(--white);
}

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

.role-card {
  position: relative;
  min-height: 320px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background-color 160ms cubic-bezier(0.4, 0, 0.2, 1);
}

.role-card:hover {
  background: var(--paper-soft);
}

.role-index {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--mustard-strong);
  background: var(--paper-soft);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.69rem;
  font-weight: 800;
}

.role-card h3 {
  margin-bottom: 14px;
  font-size: 1.24rem;
}

.role-outcome {
  margin-bottom: 26px;
  color: var(--graphite);
  line-height: 1.68;
}

.role-boundary {
  position: absolute;
  right: 30px;
  bottom: 26px;
  left: 30px;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.role-boundary strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
}

.inline-cta p {
  margin: 0;
  font-weight: 750;
}

.inline-cta a {
  flex: 0 0 auto;
  color: var(--mustard-strong);
  font-weight: 800;
  text-underline-offset: 5px;
}

.custom-section {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.82fr);
  gap: clamp(56px, 9vw, 140px);
  padding: var(--section-pad) max(6vw, calc((100vw - var(--content)) / 2));
  color: var(--white);
  background: var(--ink);
}

.custom-copy h2 {
  max-width: 620px;
  margin-bottom: 28px;
}

.custom-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgb(255 255 255 / 68%);
  line-height: 1.75;
}

.custom-copy blockquote {
  max-width: 610px;
  margin: 0 0 34px;
  padding: 22px 0 22px 24px;
  border-left: 3px solid var(--mustard);
  color: var(--mustard-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 650;
  line-height: 1.6;
}

.text-link-light {
  color: var(--white);
  font-weight: 800;
  text-underline-offset: 6px;
}

.proposal-card {
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 18px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 28px 70px rgb(0 0 0 / 28%);
}

.proposal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proposal-label,
.access-label {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proposal-status {
  flex: 0 0 auto;
  padding: 6px 9px;
  border: 1px solid #d3e8df;
  border-radius: 999px;
  color: var(--success);
  background: #edf8f2;
  font-size: 0.68rem;
  font-weight: 800;
}

.proposal-list {
  margin: 0;
  padding: 0 28px;
}

.proposal-list > div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.proposal-list dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proposal-list dd {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.5;
}

.proposal-list .proposal-approval {
  margin: 0 -28px;
  padding-right: 28px;
  padding-left: 28px;
  border-bottom: 0;
  background: var(--mustard-soft);
}

.proposal-note {
  margin: 0;
  padding: 17px 28px;
  border-top: 1px solid #f0dfa0;
  color: var(--mustard-strong);
  background: var(--paper-soft);
  font-size: 0.76rem;
  font-weight: 750;
}

.process-section {
  background: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.process-grid li {
  min-height: 270px;
  padding: 28px 28px 0 0;
  border-right: 1px solid var(--line);
}

.process-grid li:not(:first-child) {
  padding-left: 28px;
}

.process-grid li:last-child {
  border-right: 0;
}

.step-number {
  display: block;
  margin-bottom: 52px;
  color: var(--mustard-strong);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.76rem;
  font-weight: 800;
}

.process-grid h3 {
  margin-bottom: 12px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.control-section {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.control-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
}

.control-grid article {
  min-height: 275px;
  padding: 30px;
  background: var(--white);
}

.control-mark {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 52px;
  border-radius: 9px;
  color: var(--ink);
  background: var(--mustard);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 800;
}

.control-grid h3 {
  margin-bottom: 13px;
}

.control-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.connections-panel {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: clamp(46px, 8vw, 118px);
  margin-top: 54px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}

.connections-panel h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.connections-panel p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.connection-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.connection-list li {
  padding: 9px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--graphite);
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 750;
}

.pricing-section {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: clamp(56px, 9vw, 140px);
  border-top: 1px solid #ecd98b;
  border-bottom: 1px solid #ecd98b;
  background: var(--paper-soft);
}

.pricing-copy h2 {
  max-width: 730px;
  margin-bottom: 24px;
}

.pricing-lede {
  max-width: 720px;
  margin-bottom: 38px;
  color: var(--graphite);
  font-size: 1.02rem;
  line-height: 1.75;
}

.pricing-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #eadb9b;
  border-radius: 12px;
  background: #eadb9b;
}

.pricing-principles div {
  min-height: 150px;
  padding: 22px;
  background: rgb(255 255 255 / 62%);
}

.pricing-principles strong,
.pricing-principles span {
  display: block;
}

.pricing-principles strong {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.pricing-principles span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.access-card {
  padding: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 50px rgb(91 73 20 / 10%);
}

.access-card h3 {
  margin-bottom: 14px;
  font-size: 1.55rem;
}

.access-card > p:not(.access-label) {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.access-note {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  text-align: center;
}

.faq-section {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(56px, 9vw, 140px);
  background: var(--white);
}

.faq-heading {
  position: sticky;
  top: 32px;
}

.faq-heading h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
}

.faq-heading > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

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

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

.faq-list summary {
  padding: 25px 42px 25px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.faq-list summary::marker {
  color: var(--mustard-strong);
}

.faq-list details[open] summary {
  color: var(--mustard-strong);
}

.faq-list details p {
  max-width: 700px;
  margin: -5px 0 25px;
  padding-right: 28px;
  color: var(--muted);
  line-height: 1.75;
}

.final-cta {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  padding: clamp(74px, 8vw, 118px) max(6vw, calc((100vw - var(--content)) / 2));
  color: var(--white);
  background: var(--ink);
}

.final-cta h2 {
  max-width: 780px;
  margin-bottom: 22px;
}

.final-cta p:not(.eyebrow) {
  max-width: 710px;
  margin: 0;
  color: rgb(255 255 255 / 66%);
  line-height: 1.75;
}

.final-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 18px;
}

.site-footer {
  display: grid;
  align-items: start;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 52px;
  padding: 52px max(6vw, calc((100vw - var(--content)) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--paper);
  font-size: 0.8rem;
}

.footer-wordmark {
  margin-bottom: 12px;
  color: var(--ink);
}

.footer-brand-block p {
  margin: 0;
}

.footer-nav,
.footer-legal {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a,
.footer-legal a {
  text-underline-offset: 4px;
}

.footer-nav a {
  color: var(--ink);
  font-weight: 700;
}

.footer-legal {
  justify-self: end;
}

.legal-shell {
  background: var(--paper);
}

.legal-header {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(6vw, calc((100vw - 980px) / 2));
  border-bottom: 1px solid var(--line);
}

.wordmark-dark {
  color: var(--ink);
}

.legal-back {
  color: var(--graphite);
  font-size: 0.82rem;
  font-weight: 750;
  text-underline-offset: 5px;
}

.legal-main {
  width: min(760px, calc(100% - 44px));
  margin: 0 auto;
  padding: 92px 0 110px;
}

.legal-main > h1 {
  max-width: 720px;
  margin-bottom: 12px;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.legal-updated {
  margin-bottom: 34px;
  color: var(--muted);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem;
}

.legal-lede {
  margin-bottom: 34px;
  color: var(--graphite);
  font-size: 1.15rem;
  line-height: 1.75;
}

.legal-summary {
  margin-bottom: 58px;
  padding: 24px 26px;
  border: 1px solid #eadb9b;
  border-radius: 12px;
  background: var(--paper-soft);
}

.legal-summary > strong {
  display: block;
  margin-bottom: 7px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-summary p {
  margin: 0;
  color: var(--graphite);
  line-height: 1.7;
}

.legal-main section {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.legal-main section h2 {
  margin-bottom: 15px;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.legal-main section p,
.legal-main section li {
  color: var(--graphite);
  line-height: 1.78;
}

.legal-main section p:last-child,
.legal-main section ul:last-child {
  margin-bottom: 0;
}

.legal-main section li + li {
  margin-top: 12px;
}

.legal-main section a {
  color: var(--mustard-strong);
  font-weight: 700;
  text-underline-offset: 4px;
}

.legal-footer {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px max(6vw, calc((100vw - 980px) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
  font-size: 0.78rem;
}

.legal-footer a {
  text-underline-offset: 4px;
}

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

  .primary-nav {
    display: none;
  }

  .hero-content {
    width: min(720px, 68vw);
  }

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

  .custom-section {
    grid-template-columns: minmax(0, 0.85fr) minmax(400px, 1fr);
    gap: 52px;
  }

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

  .process-grid li:nth-child(2) {
    border-right: 0;
  }

  .process-grid li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .process-grid li:nth-child(3) {
    padding-left: 0;
  }

  .pricing-section {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 50px;
  }

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

  .pricing-principles div {
    min-height: auto;
  }
}

@media (max-width: 780px) {
  :root {
    --section-pad: 68px;
  }

  .site-header {
    min-height: 70px;
    gap: 16px;
    padding: 0 20px;
  }

  .wordmark {
    font-size: 1rem;
  }

  .site-header .brand-mark {
    width: 32px;
    height: 32px;
  }

  .header-actions {
    gap: 12px;
  }

  .hero {
    min-height: 800px;
    align-items: flex-start;
    background-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgb(10 13 12 / 84%) 0%, rgb(10 13 12 / 62%) 70%, rgb(10 13 12 / 34%) 100%),
      linear-gradient(0deg, rgb(10 13 12 / 78%) 0%, rgb(10 13 12 / 18%) 64%);
  }

  .hero-content {
    width: auto;
    margin: 0 22px;
    padding: 132px 0 92px;
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(3.1rem, 12vw, 5rem);
  }

  .hero-copy {
    max-width: 610px;
  }

  .hero-caption {
    right: auto;
    bottom: 22px;
    left: 22px;
  }

  .section,
  .custom-section,
  .final-cta {
    padding-right: 22px;
    padding-left: 22px;
  }

  .section-heading,
  .custom-section,
  .connections-panel,
  .pricing-section,
  .faq-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 24px;
    margin-bottom: 38px;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .custom-section {
    gap: 48px;
  }

  .proposal-card {
    width: 100%;
    max-width: 620px;
  }

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

  .control-grid article {
    min-height: auto;
  }

  .control-mark {
    margin-bottom: 36px;
  }

  .connections-panel {
    gap: 30px;
    padding: 30px;
  }

  .pricing-section {
    gap: 44px;
  }

  .access-card {
    width: 100%;
    max-width: 520px;
  }

  .faq-section {
    gap: 42px;
  }

  .faq-heading {
    position: static;
  }

  .final-cta {
    align-items: start;
    gap: 38px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding-right: 22px;
    padding-left: 22px;
  }

  .footer-legal {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 560px) {
  h2 {
    font-size: 2.35rem;
  }

  .signin-link {
    display: none;
  }

  .hero {
    min-height: 850px;
  }

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

  .hero h1 {
    font-size: clamp(2.9rem, 13.2vw, 4rem);
    line-height: 1;
  }

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

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

  .hero-caption {
    max-width: calc(100% - 44px);
    line-height: 1.5;
  }

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

  .role-card {
    min-height: 300px;
    padding: 26px;
  }

  .role-boundary {
    right: 26px;
    bottom: 24px;
    left: 26px;
  }

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

  .proposal-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .proposal-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

  .process-grid li,
  .process-grid li:not(:first-child),
  .process-grid li:nth-child(3) {
    min-height: auto;
    padding: 28px 0 34px;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .process-grid li:first-child {
    border-top: 0;
  }

  .step-number {
    margin-bottom: 28px;
  }

  .connections-panel {
    padding: 24px;
  }

  .connection-list li {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }

  .faq-list summary {
    padding-right: 12px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-legal {
    grid-column: auto;
  }

  .legal-header {
    min-height: 70px;
    padding: 0 22px;
  }

  .legal-back {
    font-size: 0.75rem;
  }

  .legal-main {
    width: calc(100% - 44px);
    padding: 68px 0 84px;
  }

  .legal-main > h1 {
    font-size: 3.15rem;
  }

  .legal-summary {
    padding: 22px;
  }

  .legal-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 22px;
  }
}

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

  .button,
  .role-card {
    transition: none;
  }
}
