:root {
  --sb-ink: #1c1c21;
  --sb-navy: #1c1c21;
  --sb-navy-2: #2d2c32;
  --sb-orange: #d61e56;
  --sb-orange-dark: #ad123f;
  --sb-sky: #fff4f7;
  --sb-sand: #fff3c4;
  --sb-green: #087a54;
  --sb-muted: #565660;
  --sb-line: #e8e4e7;
  --sb-card: #faf8f9;
  --sb-white: #ffffff;
  --sb-shadow: 0 24px 64px rgba(44, 24, 34, 0.14);
  --sb-radius: 34px;
  --sb-width: 1240px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--sb-white);
  color: var(--sb-ink);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  line-height: 1.02;
  letter-spacing: -0.05em;
}

h1 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(3.6rem, 6.15vw, 5.6rem);
  font-weight: 900;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 4.6vw, 4.25rem);
  font-weight: 880;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  font-weight: 820;
}

.sb-skip {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--sb-ink);
  color: var(--sb-white);
  font-weight: 750;
  text-decoration: none;
  transform: translateY(-160%);
}

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

.sb-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 82px;
  padding: 12px max(28px, calc((100vw - var(--sb-width)) / 2));
  border-bottom: 1px solid rgba(232, 228, 231, 0.92);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.sb-brand,
.sb-mini-brand {
  color: var(--sb-ink);
  font-size: 1.65rem;
  font-weight: 920;
  letter-spacing: -0.075em;
  line-height: 1;
  text-decoration: none;
}

.sb-brand span,
.sb-mini-brand i {
  color: var(--sb-orange);
  font-style: normal;
}

.sb-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.6vw, 38px);
}

.sb-nav a {
  color: #4e4d56;
  font-size: 0.86rem;
  font-weight: 720;
  text-decoration: none;
}

.sb-nav a:hover {
  color: var(--sb-orange-dark);
}

.sb-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  border: 2px solid transparent;
  border-radius: 999px;
  background: var(--sb-orange);
  color: var(--sb-white);
  font-size: 0.97rem;
  font-weight: 820;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.sb-button:hover {
  background: var(--sb-orange-dark);
  box-shadow: 0 10px 25px rgba(173, 18, 63, 0.22);
  transform: translateY(-2px);
}

.sb-button--small {
  min-height: 46px;
  padding: 11px 20px;
  font-size: 0.85rem;
}

.sb-button--primary {
  min-height: 60px;
  padding-inline: 31px;
}

.sb-button--inverse {
  background: var(--sb-white);
  color: var(--sb-ink);
}

.sb-button--inverse:hover {
  background: var(--sb-sand);
  color: var(--sb-ink);
}

.sb-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.98fr);
  gap: clamp(52px, 6.8vw, 96px);
  align-items: center;
  width: min(calc(100% - 56px), var(--sb-width));
  min-height: 760px;
  margin: 0 auto;
  padding: 92px 0 88px;
}

.sb-hero-copy {
  position: relative;
  z-index: 2;
}

.sb-eyebrow,
.sb-kicker {
  margin-bottom: 20px;
  color: var(--sb-orange-dark);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sb-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sb-eyebrow::before {
  width: 28px;
  height: 3px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.sb-hero h1 mark {
  color: var(--sb-orange);
  background: transparent;
}

.sb-hero h1 mark span {
  position: relative;
  z-index: 0;
  white-space: nowrap;
}

.sb-hero h1 mark span::after {
  position: absolute;
  z-index: -1;
  right: -0.05em;
  bottom: 0.02em;
  left: -0.04em;
  height: 0.38em;
  border-radius: 6px;
  background: #ffe58a;
  content: "";
  transform: rotate(-1deg);
}

.sb-lead {
  max-width: 610px;
  margin-bottom: 32px;
  color: var(--sb-muted);
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
  line-height: 1.62;
}

.sb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-bottom: 22px;
}

.sb-text-link {
  color: var(--sb-ink);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.sb-hero-link span {
  color: var(--sb-orange);
}

.sb-price-line {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  color: #707079;
  font-size: 0.74rem;
}

.sb-price-line strong {
  color: var(--sb-ink);
  font-weight: 850;
}

.sb-price-line i {
  width: 5px;
  height: 5px;
  margin-inline: 3px;
  border-radius: 50%;
  background: var(--sb-orange);
}

.sb-updated {
  margin: 10px 0 0;
  color: #73727b;
  font-size: 0.7rem;
}

.sb-hero-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 600px;
  border-radius: 42px;
  background: #faecd3;
  box-shadow: 0 26px 65px rgba(45, 33, 27, 0.14);
}

.sb-hero-stage::after {
  position: absolute;
  z-index: 1;
  top: -92px;
  right: -72px;
  width: 238px;
  height: 238px;
  border: 36px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.sb-hero-stage picture,
.sb-hero-stage picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sb-hero-stage picture img {
  object-fit: cover;
}

.sb-hero-stage::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 247, 231, 0.2) 35%, rgba(28, 28, 33, 0.32) 100%);
  content: "";
  pointer-events: none;
}

.sb-stage-label {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 22px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.75rem;
  font-weight: 830;
}

.sb-froya-float {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 92px;
  left: 22px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 32px rgba(25, 25, 28, 0.13);
  backdrop-filter: blur(12px);
}

.sb-froya-float img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.sb-froya-float strong {
  display: block;
  font-size: 0.84rem;
}

.sb-froya-float p {
  margin: 2px 0 0;
  color: var(--sb-muted);
  font-size: 0.8rem;
}

.sb-stage-proof {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 22px;
  left: 34px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 11px;
  align-items: center;
  color: var(--sb-white);
}

.sb-stage-proof > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #0d8a67;
  font-weight: 900;
}

.sb-stage-proof strong,
.sb-stage-proof small {
  display: block;
}

.sb-stage-proof strong {
  font-size: 0.75rem;
}

.sb-stage-proof small {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.68rem;
}

.sb-safety {
  display: grid;
  grid-template-columns: auto minmax(300px, 0.9fr) minmax(380px, 1.1fr);
  gap: 26px;
  align-items: center;
  width: min(calc(100% - 56px), var(--sb-width));
  margin: 0 auto 46px;
  padding: 24px 30px;
  border: 1px solid #eadfbb;
  border-radius: 24px;
  background: #fff9e7;
}

.sb-safety-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--sb-sand);
  color: var(--sb-ink);
  font-weight: 900;
}

.sb-safety .sb-kicker {
  margin-bottom: 5px;
}

.sb-safety h2 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.sb-safety > p {
  margin: 0;
  color: var(--sb-muted);
  font-size: 0.82rem;
}

.sb-safety > p strong {
  color: var(--sb-ink);
}

.sb-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  padding: 23px max(28px, calc((100vw - var(--sb-width)) / 2));
  border-top: 1px solid var(--sb-line);
  border-bottom: 1px solid var(--sb-line);
}

.sb-proof div {
  display: grid;
  gap: 2px;
  padding: 5px 28px;
  border-right: 1px solid var(--sb-line);
  text-align: center;
}

.sb-proof div:first-child {
  padding-left: 0;
}

.sb-proof div:last-child {
  padding-right: 0;
  border-right: 0;
}

.sb-proof strong {
  font-size: 0.82rem;
}

.sb-proof span {
  color: #66656d;
  font-size: 0.68rem;
}

.sb-section {
  width: min(calc(100% - 56px), var(--sb-width));
  margin: 0 auto;
  padding: 120px 0;
}

.sb-section-head {
  max-width: 800px;
  margin-bottom: 55px;
}

.sb-pdf {
  display: grid;
  grid-template-columns: minmax(460px, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}

.sb-pdf-stage {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border-radius: 46px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.75), transparent 27%),
    linear-gradient(145deg, #ffe5ed, #f8bcd0);
}

.sb-paper {
  position: absolute;
  display: block;
  overflow: hidden;
  border-radius: 3px;
  background: var(--sb-white);
  box-shadow: 0 25px 55px rgba(72, 28, 47, 0.2);
  transition: transform 180ms ease;
}

.sb-paper--back {
  top: 84px;
  right: 35px;
  width: 48%;
  transform: rotate(6deg);
}

.sb-paper--front {
  z-index: 2;
  top: 44px;
  left: 46px;
  width: 52%;
  transform: rotate(-4deg);
}

.sb-paper--back:hover {
  transform: translateY(-5px) rotate(5deg);
}

.sb-paper--front:hover {
  transform: translateY(-5px) rotate(-3deg);
}

.sb-pdf-badge {
  position: absolute;
  z-index: 3;
  right: 38px;
  bottom: 36px;
  display: grid;
  min-width: 154px;
  padding: 17px 22px;
  border-radius: 18px;
  background: var(--sb-ink);
  color: var(--sb-white);
  box-shadow: var(--sb-shadow);
}

.sb-pdf-badge strong {
  color: #ffe58a;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

.sb-pdf-badge span {
  color: #d0cfd4;
  font-size: 0.69rem;
}

.sb-pdf-copy > p:not(.sb-eyebrow, .sb-copy-intro) {
  color: var(--sb-muted);
}

.sb-pdf-copy .sb-copy-intro {
  margin-bottom: 14px;
  color: var(--sb-ink);
  font-size: 1.13rem;
  font-weight: 800;
}

.sb-check-list {
  display: grid;
  gap: 11px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.sb-check-list li {
  position: relative;
  padding-left: 27px;
  color: var(--sb-muted);
  font-size: 0.87rem;
}

.sb-check-list li::before {
  position: absolute;
  left: 0;
  color: var(--sb-green);
  content: "✓";
  font-weight: 900;
}

.sb-check-list b {
  color: var(--sb-ink);
}

.sb-boundary {
  margin: 0 0 28px;
  padding: 20px 22px;
  border-left: 4px solid var(--sb-orange);
  background: var(--sb-sky);
}

.sb-boundary > strong {
  display: block;
  margin-bottom: 7px;
  font-size: 0.85rem;
}

.sb-boundary p {
  margin-bottom: 8px;
  color: var(--sb-muted);
  font-size: 0.78rem;
}

.sb-boundary a {
  font-size: 0.78rem;
  font-weight: 800;
  text-underline-offset: 3px;
}

.sb-assistant {
  width: 100%;
  padding: 118px max(28px, calc((100vw - var(--sb-width)) / 2));
  background: var(--sb-ink);
  color: var(--sb-white);
}

.sb-assistant-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.8fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
  max-width: var(--sb-width);
  margin: 0 auto;
}

.sb-eyebrow--light {
  color: #ff8caf;
}

.sb-assistant-copy h2 {
  max-width: 690px;
}

.sb-assistant-copy > p:not(.sb-eyebrow) {
  max-width: 630px;
  color: #cfced3;
  font-size: 1.05rem;
}

.sb-handoff-path {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  align-items: center;
  margin: 33px 0;
}

.sb-handoff-path span {
  padding: 9px 14px;
  border: 1px solid #57565e;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.sb-handoff-path b {
  color: #ff8caf;
}

.sb-conversation {
  padding: 24px;
  border: 1px solid #424148;
  border-radius: 35px;
  background: #29282e;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.sb-conversation-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid #45444b;
}

.sb-mini-brand {
  color: var(--sb-white);
  font-size: 1.12rem;
}

.sb-conversation-top small {
  color: #adabb4;
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sb-froya-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  margin: 22px 0;
}

.sb-froya-row img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

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

.sb-froya-row strong {
  font-size: 0.85rem;
}

.sb-froya-row small {
  color: #aaa9b0;
  font-size: 0.68rem;
}

.sb-message {
  width: fit-content;
  max-width: 88%;
  margin-bottom: 12px;
  padding: 13px 16px;
  border-radius: 17px;
  font-size: 0.82rem;
  line-height: 1.45;
}

.sb-message--froya {
  border-bottom-left-radius: 4px;
  background: var(--sb-white);
  color: var(--sb-ink);
}

.sb-message--answer {
  margin-left: auto;
  border-bottom-right-radius: 4px;
  background: var(--sb-orange);
  color: var(--sb-white);
}

.sb-conversation-note {
  margin: 20px 0 0;
  padding-top: 17px;
  border-top: 1px solid #45444b;
  color: #aaa9b0;
  font-size: 0.69rem;
}

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

.sb-process-grid li {
  min-height: 280px;
  padding: 30px 28px 26px;
  border-right: 1px solid var(--sb-line);
}

.sb-process-grid li:first-child {
  padding-left: 0;
}

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

.sb-process-grid li > span {
  display: block;
  margin-bottom: 70px;
  color: var(--sb-orange-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.sb-process-grid p {
  margin-bottom: 0;
  color: var(--sb-muted);
  font-size: 0.84rem;
}

.sb-process-cta {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 40px;
}

.sb-process-cta span {
  color: #74737b;
  font-size: 0.77rem;
}

.sb-guides {
  padding-top: 40px;
}

.sb-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--sb-line);
  border-left: 1px solid var(--sb-line);
}

.sb-guide-grid a {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  align-items: flex-start;
  padding: 29px;
  border-right: 1px solid var(--sb-line);
  border-bottom: 1px solid var(--sb-line);
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.sb-guide-grid a:hover {
  background: var(--sb-sky);
  transform: translateY(-3px);
}

.sb-guide-grid span {
  margin-bottom: 18px;
  color: var(--sb-orange-dark);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sb-guide-grid strong {
  max-width: 420px;
  font-size: 1.22rem;
  line-height: 1.22;
}

.sb-guide-grid b {
  margin-top: auto;
  padding-top: 18px;
  color: var(--sb-muted);
  font-size: 0.76rem;
}

.sb-price {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 90px;
  align-items: center;
  padding-top: 50px;
}

.sb-price-copy > p:not(.sb-eyebrow) {
  max-width: 610px;
  color: var(--sb-muted);
}

.sb-price-card {
  padding: 34px;
  border: 1px solid #eadde4;
  border-radius: var(--sb-radius);
  background: var(--sb-white);
  box-shadow: var(--sb-shadow);
}

.sb-price-card > p {
  margin-bottom: 10px;
  color: var(--sb-muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sb-price-value {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  margin-bottom: 22px;
}

.sb-price-value strong {
  font-size: 4.6rem;
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.95;
}

.sb-price-value span {
  padding-bottom: 7px;
  font-weight: 800;
}

.sb-price-card ul {
  display: grid;
  gap: 9px;
  margin: 0 0 25px;
  padding: 22px 0;
  border-top: 1px solid var(--sb-line);
  border-bottom: 1px solid var(--sb-line);
  list-style: none;
}

.sb-price-card li {
  color: var(--sb-muted);
  font-size: 0.85rem;
}

.sb-price-card li::before {
  margin-right: 8px;
  color: var(--sb-green);
  content: "✓";
  font-weight: 900;
}

.sb-price-card .sb-button {
  width: 100%;
}

.sb-guarantee {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(calc(100% - 56px), var(--sb-width));
  margin: 0 auto;
  padding: 33px 38px;
  border-radius: 30px;
  background: var(--sb-sand);
}

.sb-guarantee > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--sb-white);
  color: var(--sb-orange-dark);
  font-size: 1.8rem;
}

.sb-guarantee .sb-kicker {
  margin-bottom: 5px;
}

.sb-guarantee h2 {
  margin-bottom: 7px;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  letter-spacing: -0.035em;
}

.sb-guarantee p:last-child {
  margin: 0;
  color: var(--sb-muted);
  font-size: 0.82rem;
}

.sb-guarantee > a {
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
  text-underline-offset: 4px;
}

.sb-faq {
  max-width: 860px;
}

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

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

.sb-faq summary {
  position: relative;
  padding: 24px 46px 24px 0;
  cursor: pointer;
  font-weight: 780;
  list-style: none;
}

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

.sb-faq summary::after {
  position: absolute;
  top: 23px;
  right: 8px;
  color: var(--sb-orange-dark);
  content: "+";
  font-size: 1.3rem;
  line-height: 1;
}

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

.sb-faq details p {
  max-width: 700px;
  margin: -5px 0 24px;
  color: var(--sb-muted);
  font-size: 0.88rem;
}

.sb-footer {
  padding: 72px max(28px, calc((100vw - var(--sb-width)) / 2)) 30px;
  background: var(--sb-ink);
  color: var(--sb-white);
}

.sb-footer-main {
  display: grid;
  grid-template-columns: auto minmax(240px, 1fr) auto;
  gap: 65px;
  align-items: start;
  padding-bottom: 58px;
}

.sb-brand--footer {
  color: var(--sb-white);
}

.sb-footer-main > p {
  max-width: 480px;
  margin: 3px 0 0;
  color: #c8c7cc;
  font-size: 0.84rem;
}

.sb-footer nav {
  display: flex;
  gap: 25px;
  margin-top: 4px;
}

.sb-footer nav a {
  color: #e4e3e6;
  font-size: 0.79rem;
  font-weight: 720;
  text-underline-offset: 4px;
}

.sb-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid #424148;
  color: #aaa9b0;
  font-size: 0.69rem;
}

.sb-mobile-cta {
  display: none;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--sb-green);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--sb-white);
}

@media (max-width: 1080px) {
  .sb-nav {
    display: none;
  }

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

  .sb-hero {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
    gap: 45px;
  }

  .sb-hero-stage {
    min-height: 540px;
  }

  .sb-safety {
    grid-template-columns: auto 1fr;
  }

  .sb-safety > p {
    grid-column: 2;
  }

  .sb-pdf {
    grid-template-columns: minmax(400px, 1fr) 0.9fr;
    gap: 60px;
  }

  .sb-pdf-stage {
    min-height: 590px;
  }

  .sb-assistant-inner {
    grid-template-columns: 1fr minmax(360px, 0.8fr);
    gap: 60px;
  }

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

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

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

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

  .sb-footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .sb-footer-main > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 820px) {
  .sb-hero {
    grid-template-columns: 1fr;
    max-width: 680px;
    padding-top: 70px;
  }

  .sb-hero-stage {
    min-height: 620px;
  }

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

  .sb-proof div:nth-child(2) {
    border-right: 0;
  }

  .sb-proof div:nth-child(n + 3) {
    padding-top: 17px;
    border-top: 1px solid var(--sb-line);
  }

  .sb-pdf {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .sb-pdf-copy {
    grid-row: 1;
  }

  .sb-pdf-stage {
    grid-row: 2;
    min-height: 720px;
  }

  .sb-assistant-inner {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .sb-conversation {
    max-width: 560px;
  }

  .sb-price {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .sb-price-card {
    max-width: 440px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
    font-size: 16px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.45rem);
  }

  .sb-header {
    min-height: 70px;
    padding: 11px 20px;
  }

  .sb-header > .sb-button {
    display: none;
  }

  .sb-brand {
    font-size: 1.5rem;
  }

  .sb-hero,
  .sb-section,
  .sb-safety,
  .sb-guarantee {
    width: min(calc(100% - 40px), var(--sb-width));
  }

  .sb-hero {
    gap: 52px;
    padding: 62px 0 70px;
  }

  .sb-eyebrow {
    gap: 10px;
    margin-bottom: 18px;
    font-size: 0.67rem;
    letter-spacing: 0.12em;
  }

  .sb-eyebrow::before {
    width: 25px;
  }

  .sb-lead {
    font-size: 1.02rem;
  }

  .sb-actions {
    display: grid;
    gap: 17px;
  }

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

  .sb-hero-link {
    justify-self: center;
  }

  .sb-price-line {
    justify-content: center;
  }

  .sb-updated {
    text-align: center;
  }

  .sb-hero-stage {
    min-height: 480px;
    border-radius: 30px;
  }

  .sb-hero-stage::after {
    top: -90px;
    right: -70px;
  }

  .sb-froya-float {
    right: 15px;
    bottom: 78px;
    left: 15px;
    grid-template-columns: 46px 1fr;
    padding: 12px 14px;
  }

  .sb-froya-float img {
    width: 46px;
    height: 46px;
  }

  .sb-stage-proof {
    right: 20px;
    bottom: 18px;
    left: 20px;
  }

  .sb-safety {
    grid-template-columns: auto 1fr;
    margin-bottom: 35px;
    padding: 22px;
  }

  .sb-safety > p {
    grid-column: 1 / -1;
  }

  .sb-proof {
    grid-template-columns: 1fr;
    padding: 15px 20px;
  }

  .sb-proof div,
  .sb-proof div:first-child,
  .sb-proof div:last-child,
  .sb-proof div:nth-child(n + 3) {
    padding: 12px 0;
    border-top: 1px solid var(--sb-line);
    border-right: 0;
  }

  .sb-proof div:first-child {
    border-top: 0;
  }

  .sb-section {
    padding: 86px 0;
  }

  .sb-section-head {
    margin-bottom: 40px;
  }

  .sb-pdf-stage {
    min-height: 520px;
    border-radius: 30px;
  }

  .sb-paper--front {
    top: 35px;
    left: 25px;
    width: 55%;
  }

  .sb-paper--back {
    top: 65px;
    right: 22px;
    width: 49%;
  }

  .sb-pdf-badge {
    right: 22px;
    bottom: 22px;
    min-width: 135px;
    padding: 14px 18px;
  }

  .sb-assistant {
    padding: 86px 20px;
  }

  .sb-handoff-path {
    gap: 8px;
  }

  .sb-handoff-path span {
    padding: 8px 11px;
    font-size: 0.68rem;
  }

  .sb-conversation {
    padding: 20px;
    border-radius: 28px;
  }

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

  .sb-process-grid li,
  .sb-process-grid li:first-child,
  .sb-process-grid li:nth-child(3),
  .sb-process-grid li:last-child {
    display: grid;
    min-height: auto;
    grid-template-columns: 45px 1fr;
    gap: 10px;
    padding: 25px 0;
    border-top: 1px solid var(--sb-line);
    border-right: 0;
  }

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

  .sb-process-grid li > span {
    margin: 3px 0 0;
  }

  .sb-process-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .sb-process-cta span {
    text-align: center;
  }

  .sb-guide-grid {
    border-left: 0;
  }

  .sb-guide-grid a {
    min-height: 170px;
    border-left: 1px solid var(--sb-line);
  }

  .sb-price {
    padding-top: 20px;
  }

  .sb-guarantee {
    grid-template-columns: auto 1fr;
    padding: 27px 23px;
  }

  .sb-guarantee > a {
    grid-column: 2;
  }

  .sb-footer {
    padding: 52px 20px 28px;
  }

  .sb-footer-main {
    grid-template-columns: 1fr;
    gap: 27px;
    padding-bottom: 40px;
  }

  .sb-footer-main > p {
    grid-column: auto;
    grid-row: auto;
  }

  .sb-footer nav {
    flex-wrap: wrap;
  }

  .sb-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .sb-mobile-cta {
    position: fixed;
    z-index: 40;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 9px 10px max(9px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    background: var(--sb-ink);
  }

  .sb-mobile-cta a {
    display: flex;
    min-height: 55px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 18px;
    border-radius: 15px;
    background: var(--sb-orange);
    color: var(--sb-white);
    text-decoration: none;
  }

  .sb-mobile-cta span {
    font-size: 0.93rem;
    font-weight: 850;
  }

  .sb-mobile-cta strong {
    max-width: 90px;
    font-size: 0.61rem;
    line-height: 1.25;
    text-align: right;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: clamp(2.5rem, 12.3vw, 3.35rem);
  }

  .sb-hero h1 mark span {
    white-space: normal;
  }

  .sb-price-line i {
    display: none;
  }

  .sb-price-line span:last-child {
    flex-basis: 100%;
    text-align: center;
  }

  .sb-hero-stage {
    min-height: 430px;
  }

  .sb-stage-label {
    top: 16px;
    left: 16px;
  }

  .sb-froya-float strong {
    font-size: 0.78rem;
  }

  .sb-froya-float p {
    font-size: 0.72rem;
  }

  .sb-safety {
    grid-template-columns: 1fr;
  }

  .sb-safety > p {
    grid-column: auto;
  }

  .sb-pdf-stage {
    min-height: 450px;
  }

  .sb-pdf-badge {
    min-width: 122px;
  }

  .sb-message {
    max-width: 94%;
  }

  .sb-handoff-path b {
    display: none;
  }

  .sb-guarantee {
    grid-template-columns: 1fr;
  }

  .sb-guarantee > a {
    grid-column: auto;
  }
}

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

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