/* Tokens (mirror index.css :root) */
:root {
  --ink: #0a0a0a;
  --white: #ffffff;
  --cream: #f8f7f4;
  --sand: #f0ede8;
  --mid: #6a6a6a;
  --border: #e5e3de;
  --green: #27c93f;
  --amber: #d97706;
  --r: 16px;
  --r-lg: 28px;
  --pad: clamp(5rem, 10vw, 9rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--ink);
}

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1rem;
}

.eyebrow-inv {
  color: rgba(255, 255, 255, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.btn-ink {
  background: var(--ink);
  color: var(--white);
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  border: 2px solid var(--ink);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-ink:hover {
  background: #333;
  transform: translateY(-2px);
}

.btn-ol-dk {
  background: transparent;
  color: var(--ink);
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border: 2px solid var(--border);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-ol-dk:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-wh {
  background: var(--white);
  color: var(--ink);
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  border: 2px solid var(--white);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-wh:hover {
  background: #eee;
  transform: translateY(-2px);
}

.btn-ol-inv {
  background: transparent;
  color: rgba(255, 255, 255, 0.48);
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-ol-inv:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  transform: translateY(-2px);
}

.sa-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.sa-wrap-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.sa-hero {
  background: var(--ink);
  padding: clamp(9rem, 16vw, 13rem) 0 clamp(5rem, 10vw, 8rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sa-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.sa-hero-inner.in {
  opacity: 1;
  transform: translateY(0);
}

.sa-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 100px;
  padding: 0.38rem 1.05rem;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 2.5rem;
}

.sa-hero-badge .bd {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  opacity: 0.45;
}

.sa-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 0.55em;
}

.sa-hero h1 .dim {
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
}

.sa-hero-sub {
  font-size: clamp(0.95rem, 2.2vw, 1.18rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  max-width: 500px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

.sa-hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.sa-trust {
  background: var(--ink);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sa-trust-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.85rem, 3vw, 3rem);
  flex-wrap: wrap;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.sa-trust-item {
  display: flex;
  align-items: center;
  gap: 0.52rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.28);
  white-space: nowrap;
}

.sa-trust-item svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.sa-trust-sep {
  width: 1px;
  height: 13px;
  background: rgba(255, 255, 255, 0.07);
}

@media (max-width: 540px) {
  .sa-trust-sep {
    display: none;
  }
}

.sa-what {
  background: var(--white);
  padding: var(--pad) 0;
}

.sa-what-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

@media (max-width: 840px) {
  .sa-what-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.sa-what-text h2 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1.1rem;
}

.sa-what-text p {
  color: var(--mid);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

.sa-what-text p:last-child {
  margin-bottom: 0;
}

.sa-what-panel {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
}

.sa-what-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}

.sa-what-row:first-child {
  padding-top: 0;
}

.sa-what-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sa-what-ico {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--ink);
  margin-top: 2px;
}

.sa-what-row-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.sa-what-row-desc {
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.6;
}

.sa-infra {
  background: var(--cream);
  padding: var(--pad) 0;
}

.sa-infra-hdr {
  text-align: center;
  margin-bottom: 4rem;
}

.sa-infra-hdr h2 {
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1rem;
}

.sa-infra-hdr p {
  color: var(--mid);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}

.sa-infra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

@media (max-width: 760px) {
  .sa-infra-grid {
    grid-template-columns: 1fr;
  }
}

.sa-icard {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}

.sa-icard:hover {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.sa-icard-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.26rem 0.72rem;
  color: var(--mid);
  margin-bottom: 1.5rem;
}

.sa-icard-tag .tag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.sa-icard-tag .tag-dot-amber {
  background: var(--amber);
}

.sa-icard h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}

.sa-icard-lead {
  font-size: 0.96rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.sa-broker-group {
  margin-bottom: 1.5rem;
}

.sa-broker-group-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.72rem;
  display: block;
}

.sa-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.sa-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 0.32rem 0.85rem;
  background: var(--cream);
  transition: border-color 0.2s;
}

.sa-pill:hover {
  border-color: var(--ink);
}

.sa-pill-prop {
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--white);
  border-radius: 100px;
  padding: 0.12rem 0.45rem;
}

.sa-more-text {
  font-size: 0.8rem;
  color: var(--mid);
  font-style: italic;
  margin-top: 0.75rem;
}

.sa-icard--paused {
  border-color: rgba(217, 119, 6, 0.2);
  background: rgba(253, 246, 232, 0.35);
}

.sa-icard--paused:hover {
  box-shadow: 0 14px 40px rgba(217, 119, 6, 0.07);
}

.sa-paused-banner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(217, 119, 6, 0.09);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: 10px;
  padding: 0.88rem 1rem;
  margin-bottom: 1.5rem;
}

.sa-paused-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  animation: pulse-amber 2.2s ease-in-out infinite;
}

@keyframes pulse-amber {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

.sa-paused-txt {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--amber);
}

.sa-paused-sub {
  font-size: 0.76rem;
  color: #a16207;
  margin-top: 0.18rem;
  line-height: 1.55;
}

.sa-products {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-bottom: 1rem;
}

.sa-product-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 600;
  color: #92400e;
  border: 1.5px solid rgba(217, 119, 6, 0.28);
  border-radius: 100px;
  padding: 0.28rem 0.82rem;
  background: rgba(253, 246, 232, 0.7);
}

.sa-how {
  background: var(--white);
  padding: var(--pad) 0;
}

.sa-how-hdr {
  text-align: center;
  margin-bottom: 4rem;
}

.sa-how-hdr h2 {
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1rem;
}

.sa-how-hdr p {
  color: var(--mid);
  font-size: 1.05rem;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.75;
}

.sa-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
}

.sa-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  padding: 0 0 2.8rem;
}

.sa-step:last-child {
  padding-bottom: 0;
}

.sa-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.sa-step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.sa-step-line {
  width: 1px;
  background: var(--border);
  flex: 1;
  margin-top: 6px;
  min-height: 40px;
}

.sa-step:last-child .sa-step-line {
  display: none;
}

.sa-step-body {
  padding-top: 0.5rem;
}

.sa-step-body h4 {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.38rem;
}

.sa-step-body p {
  font-size: 0.86rem;
  color: var(--mid);
  line-height: 1.72;
}

.sa-prop {
  background: var(--cream);
  padding: var(--pad) 0;
}

.sa-prop-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}

@media (max-width: 840px) {
  .sa-prop-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.sa-prop-text h2 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1.1rem;
}

.sa-prop-text p {
  color: var(--mid);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

.sa-prop-callout {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem;
}

.sa-prop-callout h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.sa-prop-list {
  display: flex;
  flex-direction: column;
  gap: 0.52rem;
}

.sa-prop-item {
  display: flex;
  align-items: flex-start;
  gap: 0.62rem;
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.6;
}

.sa-prop-item svg {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  color: var(--ink);
  margin-top: 2px;
}

.sa-custody {
  background: var(--ink);
  padding: var(--pad) 0;
}

.sa-custody-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

@media (max-width: 840px) {
  .sa-custody-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.sa-custody-text h2 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.1rem;
}

.sa-custody-text p {
  color: rgba(255, 255, 255, 0.38);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

.sa-custody-text p:last-child {
  margin-bottom: 0;
}

.sa-custody-cards {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.sa-custody-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r);
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: background 0.3s;
}

.sa-custody-card:hover {
  background: rgba(255, 255, 255, 0.06);
}

.sa-custody-ico {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.sa-custody-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.22rem;
}

.sa-custody-card p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.6;
  margin: 0;
}

.sa-start {
  background: var(--white);
  padding: var(--pad) 0;
}

.sa-start-hdr {
  text-align: center;
  margin-bottom: 3.5rem;
}

.sa-start-hdr h2 {
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1rem;
}

.sa-start-hdr p {
  color: var(--mid);
  font-size: 1.05rem;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.75;
}

.sa-req-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.45rem;
}

@media (max-width: 720px) {
  .sa-req-grid {
    grid-template-columns: 1fr;
  }
}

.sa-req-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
}

.sa-req-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1.2rem;
}

.sa-req-card h4 {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

.sa-req-card p {
  font-size: 0.83rem;
  color: var(--mid);
  line-height: 1.72;
}

.sa-extend {
  background: var(--cream);
  padding: 3.5rem 0;
}

.sa-extend-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.sa-extend-copy {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1rem;
}

.sa-extend-copy em {
  font-style: italic;
  color: var(--mid);
}

.sa-extend-sub {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.75;
}

.sa-faq {
  background: var(--white);
  padding: var(--pad) 0;
}

.sa-faq-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.sa-faq-hdr {
  text-align: center;
  margin-bottom: 3.5rem;
}

.sa-faq-hdr h2 {
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1rem;
}

.sa-faq-hdr p {
  color: var(--mid);
  font-size: 1.05rem;
  line-height: 1.75;
}

.sa-faq-list {
  margin-top: 3.5rem;
}

.sa-faq-item {
  border-bottom: 1px solid var(--border);
}

.sa-faq-item:first-child {
  border-top: 1px solid var(--border);
}

.sa-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.28rem 0;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
}

.sa-faq-q::-webkit-details-marker {
  display: none;
}

.sa-faq-q .fqi {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--mid);
  transition: transform 0.3s;
}

details[open] .sa-faq-q .fqi {
  transform: rotate(45deg);
}

.sa-faq-a {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.8;
  padding-bottom: 1.28rem;
  max-width: 630px;
}

.sa-cta-final {
  background: var(--ink);
  padding: var(--pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sa-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.sa-cta-inner h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 1.2rem;
}

.sa-cta-inner p {
  color: rgba(255, 255, 255, 0.36);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.4rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.sa-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.sa-cta-note {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.17);
  margin-top: 1.4rem;
  font-style: italic;
}

@media (max-width: 480px) {
  .sa-hero-cta,
  .sa-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .sa-hero-cta a,
  .sa-cta-btns a {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
