@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&family=Manrope:wght@600;700;800&display=swap");

/* =============================================
   DESIGN: SAGE — green + blue
   ============================================= */

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

:root {
  /* ── Primary: green ── */
  --accent: #22c55e;
  --accent-hover: #16a34a;
  --accent-light: #edfdf2;
  --accent-border: #b7efc9;
  --accent-muted: #6ee7b7;

  --primary-cyan: #38bdf8;
  --primary-yellow: #facc15;

  /* ── Secondary: blue ── */
  --secondary: #2563eb;
  --secondary-hover: #1d4ed8;
  --secondary-light: #eff6ff;
  --secondary-border: #bfdbfe;
  --secondary-muted: #7dd3fc;

  /* ── Gradient: green → blue ── */
  --gradient-text: linear-gradient(90deg, #22c55e 0%, #2563eb 100%);

  /* Surface — cool off-white */
  --bg: #f6fbfb;
  --bg-alt: #eef6f8;
  --bg-alt-2: #dcebf0;
  --bg-white: #ffffff;
  --bg-black: #10212c;

  /* Text */
  --text: #10212c;
  --text-2: #1e3644;
  --muted: #5d7481;

  /* Structure */
  --border: #dbe7ea;
  --border-strong: #c4d8de;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .04), 0 1px 2px rgba(0, 0, 0, .03);
  --shadow: 0 4px 16px rgba(0, 0, 0, .06), 0 2px 6px rgba(0, 0, 0, .03);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .08), 0 4px 16px rgba(0, 0, 0, .04);

  /* Type */
  --font: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-display: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;

  /* Spacing */
  --sp-1: 8px;
  --sp-2: 12px;
  --sp-3: 16px;
  --sp-4: 24px;
  --sp-5: 36px;
  --sp-6: 52px;
  --sp-7: 72px;
  --sp-8: 96px;
  --max-w: 1400px;
  --section-content-max: 1200px;
  --radius: 10px;
  --radius-lg: 18px;
  --section-left-offset: max(20px, 10vw);
  --font-size-base: 20px;
  --font-size-h1: 46px;
  ;
  --font-size-h2: 26px;
  --font-size-h3: 22px;
  ;
}

/* =============================================
   BASE
   ============================================= */

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--font-size-base);
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

strong {
  font-weight: 600;
}

/* =============================================
   LAYOUT
   ============================================= */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-4);
}

.section {
  padding: var(--sp-7) var(--sp-4) var(--sp-7) var(--section-left-offset);
}

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

.section--manifest {
  width: 100%;
  padding: var(--sp-1) var(--sp-4) var(--sp-1) var(--section-left-offset);
  background: var(--bg-black);
  color: var(--bg-white);
}

.section--manifest__inner {
  max-width: var(--section-content-max);
  margin: 0;
  padding: 28px 0 40px;
}

.section--manifest__header {
  margin-bottom: var(--sp-6);
  max-width: var(--section-content-max);
  width: 100%;
}
.section--manifest__header  h1 {
  margin: 0;
  font-size: var(--font-size-h1);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.section--developer-experience h1 {
  margin: 0;
  font-size: var(--font-size-h1);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.lanes-manifest {
  margin-top: 20px;
  max-width: var(--section-content-max);
}

.lanes-manifest__entry {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0 20px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  transition: border-color 0.2s;
}

.lanes-manifest__entry:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.lanes-manifest__entry::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--accent);
  transition: width 0.28s ease;
}

.lanes-manifest__entry:hover::before {
  width: 100%;
}

.lanes-manifest__left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 2px;
}

.lanes-manifest__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--bg-alt2);
  line-height: 1.1;
  margin: 0;
}

.lanes-manifest__name--opt {
  color: var(--accent);
  font-weight: 700;
}
.lanes-manifest__name--opt--partial {
  color: var(--primary-yellow);
  font-weight: 500;
}

.lanes-manifest__right {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
}

.lanes-manifest__what {
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--bg-white);
  line-height: 1.5;
  margin: 0;
}

.lanes-manifest__why {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* =============================================
   NAV
   ============================================= */

.sg-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 251, 251, .9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.sg-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-1) var(--sp-4) var(--sp-1) var(--section-left-offset);
  gap: var(--sp-3);
}

@keyframes sg-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .4;
    transform: scale(.75);
  }
}

.sg-nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.sg-nav__primary-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sg-nav__primary-link,
.sg-nav__utility-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  color: var(--text-2);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  transition: transform .14s ease, color .14s ease, opacity .14s ease;
}

.sg-nav__primary-link:hover,
.sg-nav__utility-link:hover {
  transform: translateY(-1px);
  color: var(--text);
  opacity: 1;
}

.sg-nav__utility-link--github {
  margin-right: 20px;
}

.sg-nav__menu {
  position: relative;
}

.sg-nav__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #16a34a 0%, #2563eb 100%);
  color: #f8fffd;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.12);
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
}

.sg-nav__menu-toggle:hover,
.sg-nav__menu-toggle[aria-expanded="true"] {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.16);
  background: linear-gradient(135deg, #15803d 0%, #1d4ed8 100%);
}

.sg-nav__hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 18px;
}

.sg-nav__hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform .18s ease, opacity .18s ease;
}

.sg-nav__menu-toggle.is-open .sg-nav__hamburger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.sg-nav__menu-toggle.is-open .sg-nav__hamburger span:nth-child(2) {
  opacity: 0;
}

.sg-nav__menu-toggle.is-open .sg-nav__hamburger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.sg-nav__menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 240px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.sg-nav__menu-link {
  display: block;
  padding: 10px 0;
  color: var(--text-2);
  font-size: 0.94rem;
  font-weight: 600;
  transition: color .14s ease, transform .14s ease;
}

.sg-nav__menu-link:hover {
  color: var(--text);
  transform: translateX(1px);
}

.logo {
  display: inline-flex;
  align-items: center;
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--accent);
  text-shadow: none;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo::before {
  content: '>';
  margin-right: 0.2rem;
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
  transition: 0.3s ease;
  font-size: 1.6rem;
}

.logo::after {
  content: '_';
  animation: blink 1s infinite;
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

/* =============================================
   HERO — left-aligned, two-column
   ============================================= */

.sg-hero {
  padding: var(--sp-7) var(--sp-4) var(--sp-7) var(--section-left-offset);
  width: 100%;
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.18), transparent 30%),
    radial-gradient(circle at left center, rgba(74, 222, 128, 0.14), transparent 28%),
    linear-gradient(135deg, #f8fffb 0%, #eef8ff 100%);
}

.sg-hero::before {
  width: 100%;
  height: 360px;
  top: -120px;
  right: -70px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.22), rgba(37, 99, 235, 0));
}

.sg-hero__layout {
  display: grid;
  margin-bottom: var(--sp-6);
  max-width: var(--section-content-max);
  width: 100%;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: var(--sp-1);
  align-items: start;
}

.sg-hero__text {
  min-width: 0;
  max-width: 900px;
  align-self: start;
}

.sg-hero__eyebrows {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.sg-hero__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.18);
  background: rgba(255, 255, 255, 0.68);
  color: #13735e;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 0;
}

.sg-hero__headline-line {
  display: block;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.98;
  color: #081d33;
  margin: 0 0 18px;
  width: 100%;
}


.sg-hero__lead {
  max-width: 720px;
  font-size: var(--font-size-base);
  color: #3e5f72;
  line-height: 1.72;
  margin: 0 0 28px;
}

.sg-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sg-hero__actions .btn--primary {
  background: linear-gradient(135deg, #16a34a 0%, #2563eb 100%);
  color: #f8fffd;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.12);
}

.sg-hero__actions .btn--primary:hover {
  background: linear-gradient(135deg, #15803d 0%, #1d4ed8 100%);
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.16);
}

.hero-threat-card {
  width: 400px;
  align-self: start;
  justify-self: end;
  margin-left: auto;
  padding: 22px 22px 18px;
  border-radius: 28px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(16, 33, 44, 0.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-threat-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.hero-threat-card__eyebrow {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #15803d;
}

.hero-threat-card__image {
  display: block;
  width: 350px;
  height: auto;
  border-radius: 18px;
}

.hero-threat-card-foot  {
  font-size: 10px;
  font-weight: 700;
  color: #3e5f72;
  text-align: center;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s ease;
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(34, 197, 94, .3);
}

.btn--outline {
  background: transparent;
  color: var(--text-2);
  border-color: var(--border-strong);
}

.btn--outline:hover {
  background: var(--bg-alt);
  color: var(--text);
}


/* =============================================
   SECTION HEADER
   ============================================= */

.section-header {
  margin-bottom: var(--sp-6);
  max-width: var(--section-content-max);
  width: 100%;
}

.section-header--center {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: var(--sp-6);
}

.eyebrow {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-2);
}

.eyebrow2 {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow3 {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: var(--font-size-h2);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.18;
  margin: 0 0 var(--sp-2);
  color: var(--text);
}

.section-header h1 {
    margin: 0;
  font-size: var(--font-size-h1);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.section-header p {
  font-size: var(--font-size-base);
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   ALTERNATING FEATURE ROWS
   ============================================= */

.sg-row-manifest {
  display: block;
  align-items: center;
  padding: var(--sp-2) var(--sp-1);
  max-width: var(--section-content-max);
  width: 100%;
  margin: 0;
  text-align: left;
}

.sg-row-manifest__text h2 {
  font-family: var(--font-display);
  font-size: var(--font-size-h2);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 var(--sp-2);
  color: var(--accent-light);

}

.sg-row-manifest__text h1 {
    margin: 0;
  font-size: var(--font-size-h1);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.sg-row-manifest__text p {
  font-size: var(--font-size-base);
  color: var(--accent-light);
  line-height: 1.75;
  margin: 0 0 var(--sp-3);
}

/* =============================================
   FEATURE GRID (small cards)
   ============================================= */

.sg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sg-card {
  padding: 22px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.sg-card:hover {
  border-color: var(--accent-border);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.sg-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: transparent;
  border: 1px solid var(--accent);
  display: grid;
  place-items: center;
  color: var(--accent);
  transition: background .2s, color .2s;
}
.ai-icon2 {
  width: 25px;
  height: 25px;
  margin-right: 10px;
  vertical-align: middle;
}

.sg-card__text {
  width: fit-content;
  max-width: 100%;
  height: 38px;
  border-radius: 9px;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 12px;
  text-align: left;
  color: var(--accent);
  transition: background .2s, color .2s;
}

.sg-card:hover .sg-card__icon {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.sg-card h3 {
  font-family: var(--font-display);
  font-size: var(--font-size-h3);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}

.sg-card p {
  font-size: var(--font-size-base);
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}


/* =============================================
   FOOTER
   ============================================= */

.sg-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.35fr) minmax(0, 0.65fr);
  align-items: start;
  column-gap: var(--sp-8);
  padding: var(--sp-8) 0 var(--sp-4);
}

.sg-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;

  margin-bottom: 20px;
}

.sg-footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  align-self: stretch;
}

.shai-footer__feedback {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 16px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  flex-wrap: wrap;
}

.shai-footer__feedback-icons {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.sg-footer__wordmark {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.sg-footer__brand p {
  font-size: var(--font-size-base);
  color: var(--muted);
}

.sg-footer__brand:nth-of-type(1) {
  grid-column: 1;
  grid-row: 1;
}

.sg-footer__links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color .14s;
}

.sg-footer__links a:hover {
  color: var(--text);
}

.sg-footer__copy {
  font-size: 0.82rem;
  color: var(--muted);
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
}

.sm_icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.sm_icons:hover {
  background-color: rgba(34, 197, 94, 0.14);
  color: #fff;
  transform: translateY(-1px);
}

.sm_icons svg {
  width: 25px;
  height: 25px;
  display: block;
}

.sg-footer__ai-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.sg-footer__ai-links a {
  flex: 0 0 auto;
}

.sg-footer__ai-links img {
  display: block;
  flex: 0 0 auto;
}

/* =============================================
   GRADIENT TEXT UTILITY
   ============================================= */

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Fallback for environments that don't support background-clip: text */
  color: var(--accent);
}

/* =============================================
   SCROLL REVEAL
   ============================================= */

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .08s;
}

.reveal-delay-2 {
  transition-delay: .15s;
}

.reveal-delay-3 {
  transition-delay: .22s;
}

/* -----------------------------------------------
       Cycling hero phrase
    ----------------------------------------------- */
.hero-phrase {
  display: block;
  position: relative;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.98;
  transition: opacity .35s ease, transform .35s ease;
  will-change: opacity, transform;
  min-height: 80px;
  margin-top: 10px;
  width: 100%;
}

.hero-phrase.is-leaving {
  opacity: 0;
  transform: translateY(-10px);
}

.hero-phrase.is-entering {
  opacity: 0;
  transform: translateY(12px);
}

.strong {
  font-weight: 800;
}


/* Mobile */

@media (prefers-reduced-motion: reduce) {

  .timeline-dot,
  .timeline-line::after,
  .timeline-content,
  .timeline-content h3,
  .timeline-box {
    transition: none;
  }
}

.section>.container{
  width: 100%;
  max-width: var(--section-content-max);
  margin: 0;
  padding: 0;
  margin-top: 30px;
}

@keyframes backend-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =============================================
   FINAL CTA / SECOND HERO
   ============================================= */

.shai-final-hero {
  position: relative;
  overflow: hidden;
  padding: 96px var(--sp-4) 96px var(--section-left-offset);
  background: var(--bg-black);
  color: #ffffff;
}

.shai-final-hero>.container {
  width: 100%;
  max-width: var(--section-content-max);
  margin: 0;
  padding: 0;
}

.shai-final-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.shai-final-hero__content {
  width: 100%;
  max-width: none;
  margin-bottom: 30px;
}

.shai-final-hero h1 {
  margin: 0;
  font-size: var(--font-size-h1);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.shai-final-hero__content p {
  margin: 26px 0 0;
  max-width: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--font-size-base);
  line-height: 1.65;
}

.shai-final-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn-dark-primary,
.btn-dark-secondary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}

.btn-dark-primary {
  background: #ffffff;
  color: var(--bg-black);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.btn-dark-primary:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
}

.btn-dark-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-dark-secondary:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
}
