/* css/index.css */
/* Sentinel — Kraken-inspired layout, neutral palette (ONLY buttons purple) */

:root{
  /* base neutrals (match your screenshot: #F6F5F9, slightly lighter) */
  --bg:#f7f8fc;
  --bg2:#ffffff;
  --ink:#12131a;
  --muted: rgba(18,19,26,.62);
  --line: rgba(18,19,26,.10);

  /* purple used ONLY for buttons */
  --btn1:#653de2;
  --btn2:#653de2;

  /* legacy surfaces */
  --card:#ffffff;
  --card2: rgba(255,255,255,.78);

  /* landing-page surface system */
  --surface-1: #ffffff;
  --surface-2: #f7f8fc;
  --surface-3: #f7f8fc;

  --border-soft: rgba(18,19,26,.08);
  --border-featured: rgba(59,130,246,.22);

  --shadow-none: none;
  --shadow-soft: 0 14px 45px rgba(17,14,35,.06);
  --shadow-featured: 0 16px 42px rgba(15,23,42,.08);
  --shadow-control: 0 10px 24px rgba(17,14,35,.08);
  --layout-max: 1240px;
  --layout-gutter: 24px;
  --hero-highlight: rgba(101, 61, 226, .08);

  --radius-shell: 38px;
  --radius-card: 24px;
  --radius-control: 14px;
  --space-card: 24px;
  --space-card-mobile: 18px;
  --ease-reveal: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-hover: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-accordion: cubic-bezier(0.24, 0.92, 0.32, 1);
  --dur-reveal: 220ms;
  --dur-hover: 180ms;
  --dur-accordion: 220ms;
  --offset-reveal: 12px;
  --offset-hover: -2px;
  --offset-link-nudge: 2px;
  --focus-ring: 0 0 0 3px rgba(59,130,246,.18);

  /* Legacy compatibility tokens are deprecated.
     Keep landing-page work on the shared surface/radius/shadow system above. */

  /* typography */
  --mono: Arial, sans-serif;
}

.surface-shell{
  /* Use for major highlighted section wrappers and tinted panels. */
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-shell);
  box-shadow: var(--shadow-none);
}

.surface-card,
.card{
  /* Use for standard interior cards that need light separation. */
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.surface-card--featured{
  /* Use only for a single promoted card within a group when it needs modest emphasis.
     Featured cards may use only the shared featured surface, border, and shadow tokens. */
  background: var(--surface-3);
  border: 1px solid var(--border-featured);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-featured);
}

/* Base */
*{ box-sizing:border-box; }
html{
  height: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: #ffffff;
  overscroll-behavior-y: none;
}
body{ height:100%; }
body{
  margin:0;
  max-width: 100%;
  overflow-x: hidden;
  padding-top: var(--topbar-h);
  color:var(--ink);
  font-family: Arial, sans-serif;
  background: var(--bg2);
  overscroll-behavior-y: none;
}
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; text-underline-offset: 3px; }
img{ max-width:100%; display:block; }

.container{
  width:min(var(--layout-max), calc(100% - (var(--layout-gutter) * 2)));
  margin:0 auto;
}

[data-section-wrapper]{
  scroll-margin-top: calc(var(--topbar-h) + 24px);
}

.sectionWrapper{
  position: relative;
  isolation: isolate;
}

.sectionWrapper > .container{
  position: relative;
  z-index: 0;
}

.sectionWrapper + .sectionWrapper{
  margin-top: 0;
}

.sectionWrapper::before,
.sectionWrapper::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
}

.sectionWrapper::before{
  display: none;
}

.sectionWrapper::after{
  display: none;
}

.sectionWrapper[data-tone="base"]{
  background: var(--bg2);
}

.sectionWrapper[data-tone="alt"]{
  background: var(--bg);
}

.sectionWrapper.sectionWrapper--hero{
  position: relative;
  z-index: 1;
  background: var(--hero-highlight);
  overflow: visible;
}

.sectionWrapper--hero::before{
  display: none;
}

.sectionWrapper--hero::after{
  display: block;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  background: var(--bg2);
  clip-path: polygon(0 74%, 100% 22%, 100% 100%, 0 100%);
  z-index: 0;
}

.sectionWrapper--footer{
  padding-top: 26px;
}

[data-section-wrapper] .sectionRevealItem{
  opacity: 0;
  transform: translateY(var(--offset-reveal));
  transition:
    opacity var(--dur-reveal) var(--ease-reveal),
    transform var(--dur-reveal) var(--ease-reveal);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-section-wrapper].is-visible .sectionRevealItem{
  opacity: 1;
  transform: translateY(0);
}

/* Utilities */
.hidden{ display:none !important; }
.srOnly{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}
.monoMuted{
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  margin:0;
}
.divider{
  height:1px;
  background: var(--line);
  margin: 14px 0;
}

:root{
  --topbar-h: 76px;
  --brand-logo-size: 150px;
}

.topbar{
  background: #ffffff;
  border-bottom: 1px solid rgba(15,23,42,.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(17,14,35,.06);
}

.topbar__inner{
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 8px;
}


.brand__mark{
  width: var(--brand-logo-size);
  height: var(--brand-logo-size);
  flex: 0 0 var(--brand-logo-size);
  display: inline-grid;
  place-items: center;
}

.brand__logo{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;   /* or cover */
  object-position: center;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  flex: 0 0 auto;
  margin-left: 92px;
}
.brand:hover{
  text-decoration: none;
}

.brand__mark{
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.topbar .brand__mark{
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.brand__logo{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.brand__name{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--ink);
  line-height: 1;
}
/* Nav */
.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 1 1 auto;
  gap: 26px;
  color: rgba(18,19,26,.72);
  font-weight: 500;
  font-size: 15px;
}
.nav a{
  padding: 10px 12px;
  border-radius: 12px;
}
.nav a:hover{
  text-decoration:none;
  background: transparent;
  color: #653de2;
}
.nav__right{
  display:flex;
  align-items:center;
  gap: 10px;
  flex: 0 0 auto;
  margin-right: 120px;
}
.nav__divider{
  width: 1px;
  height: 26px;
  background: rgba(18,19,26,.12);
  flex: 0 0 auto;
}


/* Mobile menu toggle */
.navToggle{
  display:none;
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(18,19,26,.10);
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 30px rgba(17, 14, 35, .08);
  cursor:pointer;
}
.navToggle span{
  display:block;
  width: 18px;
  height: 2px;
  background: rgba(18,19,26,.82);
  border-radius: 2px;
  margin: 4px auto;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: var(--radius-control);
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,.78);
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  box-shadow: var(--shadow-control);
  transition:
    transform var(--dur-hover) var(--ease-hover),
    box-shadow var(--dur-hover) var(--ease-hover),
    filter var(--dur-hover) var(--ease-hover),
    background-color var(--dur-hover) var(--ease-hover),
    color var(--dur-hover) var(--ease-hover),
    border-color var(--dur-hover) var(--ease-hover);
}
.btn:hover{ text-decoration:none; transform: translateY(var(--offset-hover)); box-shadow: 0 16px 30px rgba(17, 14, 35, .10); }
.btn:active{ transform: translateY(0); }
.btn:focus-visible{
  outline: none;
  box-shadow: var(--focus-ring), 0 16px 30px rgba(17, 14, 35, .10);
}
a:focus-visible,
button:focus-visible,
.navToggle:focus-visible,
.linkBtn:focus-visible{
  outline: 3px solid rgba(101, 61, 226,.28);
  outline-offset: 3px;
  border-radius: 12px;
}
.btn--dark{
  /* ONLY purple surfaces */
  background: linear-gradient(135deg, var(--btn1), var(--btn2));
  border-color: rgba(101,61,226,.28);
  color:#fff;
  box-shadow: 0 18px 60px rgba(101,61,226,.24);
}
.nav__right .btn--dark{
  padding: 10px 18px;
  gap: 6px;
  border-color: rgba(101,61,226,.28);
  background: linear-gradient(135deg, var(--btn1), var(--btn2));
  color: #fff;
  box-shadow: none;
  border-radius: var(--radius-control);
  transition: border-color .18s ease, color .18s ease;
}
.nav__right .btn--dark:hover{
  background: #24145E;
  box-shadow: none;
}
.nav__right .btn:hover{
  transform: none;
}
.nav__right .btn:active{
  transform: none;
}
.btn--ghost{
  background: transparent;
  border-color: rgba(18,19,26,.12);
  box-shadow:none;
  color: #653de2;
}
.btn--ghost:hover{
  box-shadow: none;
}
.nav__right .btn--ghost{
  border: 0;
  padding: 10px 18px;
}
.nav__right .btn--ghost:hover{
  background: #f3f4f6;
  color: #653de2;
}
.btn--hero{
  min-width: 274px;
  background: linear-gradient(135deg, var(--btn1), var(--btn2));
  border-color: rgba(101,61,226,.28);
  color:#fff;
  box-shadow: 0 18px 42px rgba(101,61,226,.22);
}
.btn--dark:hover,
.btn--hero:hover,
.trustBlock__primary:hover{
  box-shadow: 0 18px 42px rgba(101,61,226,.22);
}
.btn--heroAlt{
  min-width: 168px;
}
.btn--full{ width:100%; }

/* Hero */
.hero{
  position:relative;
  padding: 54px 0 72px;
}
.hero__bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  background: transparent;
  opacity: 1;
}
.hero__grid{
  position:relative;
  display:grid;
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
  gap: 48px;
  align-items:center;
}

.eyebrow{
  display:flex;
  align-items:center;
  gap:12px;
  width: fit-content;
  padding: 10px 16px;
  border: 1px solid rgba(99,102,241,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 30px rgba(17,14,35,.06);
  color: rgba(18,19,26,.78);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.eyebrow__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 18px;
  line-height: 1;
}

.hero__title{
  margin: 20px 0 0;
  max-width: 14.5ch;
  font-size: clamp(32px, 3.7vw, 50px);
  line-height: 1.05;
  letter-spacing:-.04em;
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
}
.hero__title strong{
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  display: inline-block;
  white-space: nowrap;
  font-size: .95em;
  padding: 0 0 .08em;
  margin-bottom: -.08em;
  border-radius: 0;
  background-image:
    linear-gradient(135deg, rgba(139,123,255,.92) 0%, rgba(109,76,255,.82) 45%, rgba(143,132,255,.88) 100%),
    url("../img/logo.webp");
  background-size: cover, 78%;
  background-position: center, center 52%;
  background-repeat: no-repeat;
  background-blend-mode: screen, normal;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__lead{
  margin: 26px 0 0;
  color: rgba(18,19,26,.74);
  font-size: 18px;
  line-height: 1.72;
  max-width: 47ch;
  align-self: flex-start;
  text-align: left;
}

.hero__copy{
  position: relative;
  padding-top: 66px;
  transform: none;
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: min(100%, 440px);
  justify-self: end;
}
.hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero__socialProof{
  display:flex;
  flex-direction:column;
  gap: 8px;
  margin-top: 26px;
  color: rgba(18,19,26,.72);
  font-size: 16px;
}
.hero__socialProofLabel{
  font-weight: 600;
}
.hero__socialProofStat{
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}
.hero__socialProofStat strong{
  font-size: 1.35em;
  font-weight: 900;
}
.hero__benefit::before{
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid #22c55e;
  box-shadow: inset 0 0 0 4px rgba(34,197,94,.10);
}
.hero__floatArt{
  position: absolute;
  left: -290px;
  bottom: -12px;
  width: 260px;
  margin: 0;
  opacity: .96;
  pointer-events: none;
  z-index: 0;
}
.hero__floatArtImage{
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 30px rgba(132, 74, 255, .12));
}
.hero__copy > *:not(.hero__floatArt){
  position: relative;
  z-index: 1;
}
.hero__cta{ margin-top: 18px; }
.hero__fine{
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}

.panel--hero{
  position: relative;
  top: auto;
}
.hero__floatArtRight{
  position: absolute;
  right: -255px;
  bottom: -12px;
  width: 260px;
  margin: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__floatArtRightImage{
  display: block;
  width: 100%;
  height: auto;
}
.hero__floatArtRightTop{
  position: absolute;
  right: -270px;
  top: 135px;
  width: 250px;
  margin: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__floatArtRightTopImage{
  display: block;
  width: 100%;
  height: auto;
}

.heroShowcase{
  border-radius: var(--radius-card);
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 22px;
  color: #0f172a;
}
.heroShowcase__canvas--signup{
  min-height: auto;
  margin-top: 0;
}
.heroSignupCard{
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: min(100%, 477px);
  margin: 0 0 0 24px;
  padding: 14px;
  border: 0;
  border-radius: 22px;
  background: transparent;
  box-shadow: none;
}
.heroSignupCard__label{
  font-size: 14px;
  font-weight: 800;
  color: rgba(18,19,26,.88);
}
.heroSignupCard__field{
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 40px;
  padding: 10px 18px;
  border: 1px solid rgba(18,19,26,.12);
  border-radius: 12px;
  background: #fff;
  color: rgba(18,19,26,.88);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
  backdrop-filter: blur(6px);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.heroSignupCard__field::placeholder{
  color: rgba(18,19,26,.48);
}
.heroSignupCard__field:focus{
  border-color: #653de2;
  box-shadow: none;
}
.heroSignupCard__field.is-invalid{
  border-color: #dc2626;
}
.heroSignupCard__hint{
  margin: 0;
  color: rgba(18,19,26,.58);
  font-size: 13px;
  line-height: 1.45;
  white-space: nowrap;
}
.heroSignupCard__hint--error{
  color: #dc2626;
}
.heroSignupCard__primary,
.heroSignupCard__oauth{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
  text-decoration: none;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.heroSignupCard__primary{
  min-height: 40px;
  padding: 10px 18px;
  border: 1px solid rgba(101,61,226,.28);
  border-radius: var(--radius-control);
  background: linear-gradient(135deg, var(--btn1), var(--btn2));
  color: #fff;
  box-shadow: none;
  font-size: 15px;
}
.heroSignupCard__primary:hover{
  background: #24145E;
  box-shadow: none;
}
.heroSignupCard__oauth:hover{
  background: #f3f4f6;
}
.heroSignupCard__primary:hover,
.heroSignupCard__oauth:hover{
  text-decoration: none;
}
.heroSignupCard__divider{
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(18,19,26,.72);
  font-size: 15px;
  font-weight: 600;
}
.heroSignupCard__divider::before,
.heroSignupCard__divider::after{
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: rgba(18,19,26,.12);
}
.heroSignupCard__divider span{
  flex: 0 0 auto;
}
.heroSignupCard__oauthRow{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.heroSignupCard__oauth{
  justify-content: center;
  gap: 14px;
  min-height: 40px;
  padding: 10px 18px;
  border: 1px solid rgba(18,19,26,.10);
  background: rgba(255,255,255,.84);
  color: rgba(18,19,26,.72);
  box-shadow: none;
  font-size: 15px;
}
.heroSignupCard__googleMark{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}
.heroSignupCard__googleMark svg{
  display: block;
  width: 100%;
  height: 100%;
}
.heroSignupCard__microsoftMark{
  display: grid;
  grid-template-columns: repeat(2, 8px);
  grid-template-rows: repeat(2, 8px);
  gap: 2px;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.heroSignupCard__microsoftMark span:nth-child(1){ background: #f25022; }
.heroSignupCard__microsoftMark span:nth-child(2){ background: #7fba00; }
.heroSignupCard__microsoftMark span:nth-child(3){ background: #00a4ef; }
.heroSignupCard__microsoftMark span:nth-child(4){ background: #ffb900; }
.heroMiniCards{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.heroIconCarousel__intro{
  margin: 28px 0 10px;
  color: rgba(15,23,42,.82);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
  text-align: center;
}
.hero__copy .heroIconCarousel__intro{
  margin: 22px 0 10px;
  text-align: left;
  color: rgba(18,19,26,.74);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: normal;
}
.heroIconCarousel{
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 26px;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
}
.hero__copy .heroIconCarousel{
  width: 100%;
  margin-top: 0;
}
.workspaceMenu{
  width: min(100%, 820px);
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
  gap: 16px 12px;
  list-style: none;
}
.workspaceMenu__item{
  min-height: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 4px 6px;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.workspaceMenu__item img{
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  object-fit: contain;
  transform: translateY(0) scale(1);
  transition: transform .18s ease, filter .18s ease;
  will-change: transform;
}
.workspaceMenu__item span{
  color: rgba(15,23,42,.72);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}
@media (hover: hover) and (pointer: fine){
  .workspaceMenu__item:hover img{
    filter: drop-shadow(0 10px 8px rgba(15,23,42,.18));
    transform: translateY(-6px) scale(1.08);
  }
}
.heroIconCarousel::-webkit-scrollbar{
  display: none;
}
.heroIconCarousel.is-dragging{
  cursor: grabbing;
}
.heroIconCarousel__track{
  display: flex;
  width: max-content;
}
.heroIconCarousel__group{
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  padding-right: 14px;
}
.heroIconCarousel__item{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-height: 92px;
  min-width: 94px;
  padding: 8px 6px;
  border-radius: 18px;
  background: transparent;
  border: 0;
  box-shadow: none;
  white-space: normal;
  text-align: center;
}
.heroIconCarousel__item img{
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.heroIconCarousel__item span{
  color: rgba(15,23,42,.7);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.heroMiniCards--band{
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.heroMiniCard{
  height: 460px;
  min-height: 460px;
  padding: 14px 14px 0;
  border-radius: 28px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(148,163,184,.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(-28px);
}
.heroMiniCard__eyebrowRow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
}

.heroMiniCard__eyebrow{
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}

.heroMiniCard h3{
  margin: 14px 0 0;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -.03em;
}
.heroMiniCard__visual{
  margin-top: 16px;
  margin-left: -14px;
  margin-right: -14px;
  margin-bottom: 0;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  border-top: 1px solid rgba(226,232,240,.7);
}
.heroMiniCard__image{
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: contain;
  object-position: center;
}
.heroMiniCard--blue .heroMiniCard__eyebrow{
  background: rgba(59,130,246,.14);
  color: #1d4ed8;
}
.heroMiniCard--green .heroMiniCard__eyebrow{
  background: rgba(132,204,22,.16);
  color: #4d7c0f;
}
.heroMiniCard--violet .heroMiniCard__eyebrow{
  background: rgba(101, 61, 226,.14);
  color: #653de2;
}
.heroMiniCard--amber .heroMiniCard__eyebrow{
  background: rgba(245,158,11,.16);
  color: #b45309;
}
.heroTracker{
  min-height: 100%;
  padding: 24px 16px 0;
  background: #1a1b1d;
  color: #fff;
}
.heroTracker__status{
  color: rgba(255,255,255,.36);
  font-size: 16px;
  letter-spacing: .04em;
}
.heroTrackerTask{
  margin-top: 16px;
  padding: 22px 18px 16px;
  border-radius: 8px;
  background: #2d2f34;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
.heroTrackerTask p{
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 20px;
  line-height: 1.35;
}
.heroTrackerTask__tag{
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-top: 18px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}
.heroTrackerTask__tag--blue{
  background: #7fb0ff;
  color: #1f4f9f;
}
.heroTrackerTask__tag--violet{
  background: #653de2;
  color: #fff;
}
.heroTrackerTask__meta{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.heroTrackerTask__check{
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid #2766d4;
  position: relative;
}
.heroTrackerTask__check::after{
  content: "";
  position: absolute;
  left: 4px;
  top: 0;
  width: 5px;
  height: 10px;
  border: solid #2766d4;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.heroTrackerTask__id{
  color: rgba(255,255,255,.68);
  font-size: 16px;
  font-weight: 700;
}
.heroTrackerTask__avatars{
  display: flex;
  margin-left: auto;
}
.heroTrackerTask__avatar{
  width: 32px;
  height: 32px;
  margin-left: -6px;
  border-radius: 50%;
  border: 3px solid #2d2f34;
}
.heroTrackerTask__avatar--lime{ background: linear-gradient(135deg, #86efac, #65a30d); }
.heroTrackerTask__avatar--blue{ background: linear-gradient(135deg, #93c5fd, #2563eb); }
.heroTrackerTask__avatar--amber{ background: linear-gradient(135deg, #fdba74, #f59e0b); }
.heroTrackerTask__avatar--violet{ background: linear-gradient(135deg, #653de2, #653de2); }

.heroMiniCard__previewImage{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.heroMiniCard__visual--tracker .heroMiniCard__previewImage{
  transform: none;
  object-position: center;
}

.heroCalendar{
  position: relative;
  min-height: 100%;
  padding: 0 0 0 0;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}
.heroCalendar__head,
.heroCalendar__cells{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.heroCalendar__head{
  margin-top: 34px;
  padding: 10px 18px;
  color: #a8b3c4;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  border-top: 1px solid rgba(226,232,240,.8);
  border-bottom: 1px solid rgba(226,232,240,.8);
}
.heroCalendar__cells{
  position: relative;
  color: #6b7a90;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.heroCalendar__cells span{
  padding: 10px 0 58px;
  border-bottom: 1px solid rgba(226,232,240,.8);
}
.heroCalendar__cells span:nth-child(odd),
.heroCalendar__head span:first-child{
  border-right: 1px solid rgba(226,232,240,.8);
}
.heroCalendar__events{
  position: absolute;
  inset: 86px 0 0;
}
.heroCalendar__event{
  position: absolute;
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #374151;
  white-space: nowrap;
}
.heroCalendar__event::before{
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 3px;
  border: 2px solid currentColor;
}
.heroCalendar__event--violet{
  background: rgba(101, 61, 226,.72);
  color: #653de2;
}
.heroCalendar__event--blue{
  background: rgba(191,219,254,.9);
  color: #3b82f6;
}
.heroCalendar__event--full{ left: 18px; right: 18px; top: 14px; }
.heroCalendar__event--topRight{ left: calc(50% + 6px); right: 18px; top: 46px; }
.heroCalendar__event--midRight{ left: calc(50% + 6px); right: 18px; top: 80px; }
.heroCalendar__event--lowerRight{ left: calc(50% + 6px); right: 18px; top: 194px; }
.heroCalendar__event--bottomLeft{ left: 18px; right: calc(50% + 6px); top: 308px; }
.heroCalendar__event--bottomRight{ left: calc(50% + 6px); right: 18px; top: 340px; }

.heroReportPreview{
  min-height: 100%;
  padding: 10px 8px 0;
  background: #ffffff;
}
.heroReportPreview__shell{
  min-height: 100%;
  padding: 0;
}
.heroReportPreview__window{
  min-height: 100%;
  padding: 12px 12px 0;
  border-radius: 16px 16px 0 0;
  background: #ffffff;
  box-shadow: none;
}
.heroReportPreview__subjectLine{
  margin-bottom: 10px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.45;
}
.heroReportPreview__subjectLine strong{
  color: #111827;
}
.heroReportPreview__frame{
  padding: 26px 12px 22px;
  border: 1px solid #e5e7eb;
  border-radius: 12px 12px 0 0;
  background: #ffffff;
}
.heroReportPreview__mail{
  width: min(100%, 270px);
  margin: 0 auto;
  border-radius: 8px;
  padding: 22px 22px 24px;
  background: #fff;
}
.heroReportPreview__title{
  margin: 0 0 12px;
  color: #111827;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
}
.heroReportPreview__body{
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.55;
}
.heroReportPreview__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 6px;
  background: #653de2;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.heroReportPreview__footer{
  width: min(100%, 270px);
  margin: 18px auto 0;
  color: #9ca3af;
  font-size: 10px;
  line-height: 1.5;
}
.heroReportPreview__footer span{
  text-decoration: underline;
  text-underline-offset: 2px;
}

.heroWorkflow{
  position: relative;
  min-height: 100%;
  padding: 22px 18px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.heroWorkflow::before,
.heroWorkflow::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(226,232,240,.9);
}
.heroWorkflow::before{ left: 52%; }
.heroWorkflow::after{ right: 22px; }
.heroWorkflow__row{
  display: grid;
  grid-template-columns: 16px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 70px;
  border-bottom: 1px solid rgba(226,232,240,.82);
}
.heroWorkflow__marker{
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 2px solid currentColor;
}
.heroWorkflow__marker--amber{ color: #f97316; }
.heroWorkflow__marker--green{ color: #84cc16; }
.heroWorkflow__label{
  color: rgba(18,19,26,.78);
  font-size: 16px;
  white-space: nowrap;
}
.heroWorkflow__bar{
  height: 28px;
  border-radius: 6px;
}
.heroWorkflow__bar--blue{ background: #4b84e6; }
.heroWorkflow__bar--slate{ background: #8f95a3; }
.heroWorkflow__bar--lg{ width: 136px; }
.heroWorkflow__bar--md{ width: 126px; }
.heroWorkflow__bar--sm{ width: 106px; }
.heroWorkflow__popover{
  position: absolute;
  left: 42px;
  top: 136px;
  width: 240px;
  padding: 14px 0 10px;
  border-radius: 16px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 14px 30px rgba(15,23,42,.12);
  border: 1px solid rgba(226,232,240,.95);
}
.heroWorkflow__popoverItem{
  padding: 14px 18px;
  color: rgba(18,19,26,.72);
  font-size: 14px;
  border-top: 1px solid rgba(226,232,240,.8);
}
.heroWorkflow__popoverItem:first-child{
  border-top: 0;
}
.heroWorkflow__popoverMeta{
  padding: 10px 18px 0;
  color: #ef4444;
  font-size: 14px;
  font-weight: 700;
}

.heroFormPreview{
  min-height: 100%;
  padding: 36px 28px 0;
  background: #fff;
}
.heroFormPreview h4{
  margin: 0 0 22px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: rgba(18,19,26,.86);
}
.heroFormPreview__field span,
.heroFormPreview__select span{
  display: block;
  color: rgba(18,19,26,.58);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
}
.heroFormPreview__field i{
  display: block;
  min-height: 36px;
  padding: 10px 12px;
  border: 1px solid rgba(148,163,184,.35);
  font-style: normal;
  color: rgba(18,19,26,.68);
}
.heroFormPreview__editor{
  margin-top: 16px;
  border: 2px solid #5b8def;
}
.heroFormPreview__toolbar{
  height: 30px;
  border-bottom: 1px solid rgba(148,163,184,.28);
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(148,163,184,.35) 18% 18.6%, transparent 18.6% 36%, rgba(148,163,184,.35) 36% 36.6%, transparent 36.6% 54%, rgba(148,163,184,.35) 54% 54.6%, transparent 54.6% 72%, rgba(148,163,184,.35) 72% 72.6%, transparent 72.6% 100%);
}
.heroFormPreview__editor p{
  margin: 0;
  padding: 14px 12px 18px;
  color: rgba(18,19,26,.76);
  font-size: 14px;
  line-height: 1.45;
}
.heroFormPreview__select{
  margin-top: 18px;
}
.heroFormPreview__select span:last-child{
  margin-bottom: 0;
}
.heroFormPreview__select{
  min-height: 40px;
  padding: 10px 12px;
  border: 2px solid #5b8def;
  color: rgba(18,19,26,.66);
  font-size: 14px;
}
.heroFormPreview__menu{
  border: 1px solid rgba(226,232,240,.95);
  border-top: 0;
  box-shadow: 0 10px 24px rgba(15,23,42,.08);
  background: #fff;
}
.heroFormPreview__menu span{
  display: block;
  padding: 10px 12px;
  color: rgba(18,19,26,.7);
  font-size: 14px;
}
.heroShowcase__toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.heroShowcase__chip,
.heroShowcase__status{
  display:inline-flex;
  align-items:center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
}
.heroShowcase__chip{
  background: rgba(255,255,255,.72);
}
.heroShowcase__status{
  background: rgba(27,189,111,.94);
}
.heroShowcase__canvas{
  position:relative;
  min-height: 330px;
  margin-top: 18px;
}
.heroShowcase__window{
  position:absolute;
  border-radius: var(--radius-control);
  background: #f8fbff;
  overflow:hidden;
  box-shadow: var(--shadow-soft);
}
.heroShowcase__window--back{
  top: 58px;
  right: 42px;
  width: 160px;
  height: 126px;
  opacity: .85;
}
.heroShowcase__window--front{
  top: 26px;
  left: 50%;
  width: min(100%, 430px);
  min-height: 190px;
  transform: translateX(-50%);
}
.heroShowcase__windowBar{
  display:flex;
  align-items:center;
  gap: 8px;
  height: 18px;
  padding: 14px 16px;
  background: #dfeafb;
}
.heroShowcase__windowBar span{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8fb7f8;
}
.heroShowcase__windowBar span:last-child{
  margin-left: auto;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, #653de2, #f97316);
}
.heroShowcase__windowBody{
  display:grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  padding: 18px 18px 20px;
}
.heroShowcase__sidebar{
  border-radius: 12px;
  background: linear-gradient(180deg, #eaf1fb, #dce8f6);
  min-height: 138px;
}
.heroShowcase__content{
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.heroShowcase__header{
  height: 14px;
  width: 58%;
  border-radius: 999px;
  background: #d6e4fa;
}
.heroShowcase__metrics,
.heroShowcase__table{
  display:grid;
  gap: 10px;
}
.heroShowcase__metrics{
  grid-template-columns: repeat(3, 1fr);
}
.heroShowcase__metrics span,
.heroShowcase__table span{
  display:block;
  border-radius: 10px;
  background: #eaf1fb;
}
.heroShowcase__metrics span{
  height: 34px;
}
.heroShowcase__table{
  grid-template-columns: repeat(3, 1fr);
}
.heroShowcase__table span{
  height: 40px;
}
.heroShowcase__table--wide{
  grid-template-columns: 1.2fr .8fr;
}
.heroShowcase__callout{
  position:absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(11,17,32,.92);
  color:#fff;
  font-size: 14px;
  text-align:center;
  white-space: nowrap;
  box-shadow: var(--shadow-control);
}
.heroShowcase__footer{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap: 16px 22px;
  margin-top: 18px;
  color: rgba(15,23,42,.78);
  font-size: 15px;
}
.heroShowcase__footer span{
  display:inline-flex;
  align-items:center;
  gap: 10px;
}
.heroShowcase__footer i{
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(15,23,42,.18);
  display:inline-block;
}

.trustSection{
  position: relative;
  z-index: 0;
  padding-top: 18px;
  background: #fff;
  overflow: visible;
}

.trustSection::before{
  display: none;
}

.trustBlock{
  position: relative;
  max-width: 1320px;
  margin: 0 auto -24px;
  padding: calc(var(--space-card) + 40px) var(--space-card) 0;
  text-align: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  z-index: 2;
}
.trustBlock__rating{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  margin-top: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.4;
}
.trustBlock__rating strong{
  color: #334155;
  font-weight: 700;
}
.trustBlock__stars{
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex: 0 0 auto;
  color: #fbbf24;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}
.trustBlock__starIcon{
  width: 22px;
  height: 22px;
  display: block;
}
.trustBlock__starIcon path{
  stroke: rgba(234, 179, 8, .35);
  stroke-width: .8;
  stroke-linejoin: round;
}
.trustBlock__starIcon.is-filled path{
  fill: #fbbf24;
}
.trustBlock__starIcon.is-partial path{
  fill: url(#trustStarPartial);
}
.trustBlock__title{
  margin: 12px 0 0;
  font-size: clamp(28px, 4vw, 34px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -.03em;
  color: #0f172a;
}
.trustBlock__copy{
  margin: 8px 0 0;
  font-size: 17px;
  line-height: 1.55;
  color: #64748b;
}
.trustBlock__copyTail{
  white-space: nowrap;
}
.trustBlock__copyIcon{
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 2px;
  margin-right: 0;
  vertical-align: -5px;
}
.trustBlock__actions{
  display:flex;
  justify-content:center;
  gap: 12px;
  margin-top: 20px;
}
.trustBlock__primary,
.trustBlock__secondary{
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: none;
}
.trustBlock__primary{
  background: linear-gradient(135deg, var(--btn1), var(--btn2));
  border: 1px solid rgba(101, 61, 226,.18);
  color: #fff;
}
.trustBlock__secondary{
  border: 1px solid var(--border-soft);
  background: transparent;
  color: #0f172a;
}
.trustBlock__industry{
  position: relative;
  overflow: visible;
  margin: 18px 0 0;
  color: rgba(15,23,42,.56);
  text-align: center;
  mask-image: none;
  -webkit-mask-image: none;
}
.trustBlock__industryLine{
  max-width: 1120px;
  margin: 0 auto;
  color: rgba(15,23,42,.56);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
}
.trustBlock__industryTrack{
  display: block;
  width: 100%;
  animation: none;
}
.trustBlock__industryGroup{
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  align-items: center;
  gap: 10px;
  width: 100%;
}
.trustBlock__industryItem{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  line-height: 1.15;
  letter-spacing: -.03em;
  font-weight: 700;
  white-space: normal;
}
.trustBlock__industryItem--caps{
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}
.trustBlock__industryItem--wide{
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
}
.trustBlock__industryItem--title{
  font-size: 15px;
  font-weight: 700;
}
.trustBlock__industryItem--plus{
  font-size: 14px;
  font-weight: 600;
}

.launchSection{
  margin-top: -74px;
  padding: 0 0 72px;
  overflow: hidden;
}

.launchSection__shell{
  position: relative;
  isolation: isolate;
  padding: clamp(28px, 4vw, 52px) clamp(20px, 3vw, 42px) 0;
}

.launchSection__shell::before,
.launchSection__shell::after{
  content: "";
  position: absolute;
  pointer-events: none;
}

.launchSection__shell::before{
  left: 0;
  right: 0;
  top: -64px;
  height: clamp(1580px, 116vw, 1780px);
  background: #D6F5A3;
  clip-path: polygon(0 2%, 68% 0, 100% 0, 100% 92%, 94% 98%, 72% 100%, 0 97%);
  z-index: 0;
}

.launchSection__shell::after{
  top: -64px;
  left: 0;
  width: 260px;
  height: 132px;
  background: var(--bg2);
  clip-path: polygon(0 22%, 74% 22%, 86% 0, 100% 0, 100% 78%, 18% 78%, 0 100%);
  z-index: 0;
}

.launchSection__hero,
.launchSection__eyebrow,
.launchSection__title,
.launchSection__lead,
.launchSection__panel,
.launchSection__supportGrid{
  position: relative;
  z-index: 1;
}

.launchSection__hero{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  z-index: 2;
}

.launchSection__intro{
  max-width: 760px;
  transform: translateY(10px);
}

.launchSection__eyebrow{
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #12131a;
}

.launchSection__title{
  margin: 14px 0 0;
  max-width: 760px;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -.055em;
  color: #12131a;
}

.launchSection__lead{
  margin: 16px 0 0;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(18,19,26,.84);
}

.launchSection__visual{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 0;
  padding-top: 8px;
}

.launchSection__visualImage{
  display: block;
  width: min(100%, 620px);
  height: auto;
  filter: drop-shadow(0 24px 42px rgba(18,19,26,.16));
  transform: translateY(clamp(-48px, -3vw, -32px));
}

.launchSection__panel{
  margin-top: clamp(-96px, -5.7vw, -56px);
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(280px, .58fr);
  min-height: 360px;
  border: 1px solid rgba(18,19,26,.12);
  border-radius: 28px;
  background: #fff;
  overflow: hidden;
}

.launchSection__panelVisual{
  position: relative;
  grid-column: 1;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 2vw, 24px);
  overflow: hidden;
}

.launchSection__panelImage{
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  box-shadow: 0 22px 38px rgba(18,19,26,.14);
  transform: scale(1.02);
}

.launchSection__supportGrid{
  margin-top: clamp(28px, 4vw, 40px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2.6vw, 30px);
}

.launchImportExport{
  position: relative;
  z-index: 2;
  isolation: isolate;
  margin: clamp(96px, 8vw, 128px) 0 0;
  padding: clamp(30px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(250px, .78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.launchImportExport::before{
  content: "";
  position: absolute;
  inset: -48px -42px -88px;
  z-index: -2;
  border: 0;
  border-radius: 0;
  background: #d9f2f0;
  clip-path: polygon(0 7%, 70% 0, 100% 5%, 100% 84%, 92% 92%, 0 100%);
  box-shadow: 0 28px 58px rgba(20,83,96,.12);
  pointer-events: none;
}

.launchImportExport::after{
  content: "";
  position: absolute;
  top: -48px;
  right: -42px;
  width: clamp(128px, 17vw, 260px);
  height: clamp(52px, 7vw, 92px);
  z-index: -1;
  background: #d9f2f0;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 76%);
  pointer-events: none;
}

.launchImportExport__copy{
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  gap: 14px;
  text-align: left;
}

.launchImportExport__eyebrow{
  margin: 0;
  color: #12131a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
}

.launchImportExport__copy h3{
  margin: 0;
  max-width: 9.8em;
  color: #12131a;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: -.055em;
}

.launchImportExport__copy h3 span{
  display: inline-block;
  color: #12131a;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 800;
  line-height: .88;
}

.launchImportExport__copy p{
  margin: 0;
  max-width: 36ch;
  color: rgba(18,19,26,.78);
  font-size: 18px;
  line-height: 1.55;
}

.launchImportExport__stage{
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  z-index: 1;
  margin-top: 0;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.launchImportExport__rail{
  position: relative;
  width: 100%;
  min-height: 144px;
  padding: 18px 22px 30px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(18,19,26,.08);
  border-radius: 26px;
  background: rgba(255,255,255,.54);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.86),
    0 18px 34px rgba(20,83,96,.10);
}

.launchImportExport__rail::after{
  display: none;
}

.launchImportExport__tile{
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  justify-self: center;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18,19,26,.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(18,19,26,.12);
}

.launchImportExport__tile::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -24px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 1px 4px rgba(18,19,26,.10);
  transform: translateX(-50%);
  pointer-events: none;
}

.launchImportExport__tile img{
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.launchImportExport__tile--guardzy{
  width: 104px;
  height: 104px;
  padding: 0;
  border-color: rgba(109,70,241,.38);
  border-radius: 26px;
  background: #6d46f1;
  box-shadow:
    0 18px 36px rgba(74,44,189,.30),
    inset 0 1px 0 rgba(255,255,255,.62);
  transform: translateY(-18px);
}

.launchImportExport__tile--guardzy img{
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.launchImportExport__apps{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.launchImportExport__apps span{
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border: 1px solid rgba(18,19,26,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  color: rgba(18,19,26,.78);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
}

.launchImportExport__cta{
  grid-column: 1;
  grid-row: 2;
  position: relative;
  z-index: 1;
  width: min(100%, 250px);
  min-height: 58px;
  margin: 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(101,61,226,.28);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--btn1), var(--btn2));
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  box-shadow: 0 18px 34px rgba(109,70,241,.22);
  transition: border-color .18s ease, color .18s ease;
}

.launchImportExport__cta:hover{
  text-decoration: none;
  background: #24145E;
  transform: none;
  box-shadow: 0 18px 34px rgba(109,70,241,.22);
}

.launchImportExport__cta:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(109,70,241,.22), 0 18px 34px rgba(109,70,241,.22);
}

.launchPurplePanel{
  position: relative;
  z-index: 1;
  width: 100vw;
  margin: clamp(36px, 5vw, 56px) calc(50% - 50vw) 0;
  background: linear-gradient(180deg, #d8e8ff 0%, #c6dbff 100%);
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
}

.launchPurplePanel__inner{
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(84px, 9vw, 118px) clamp(24px, 4vw, 46px) clamp(78px, 8vw, 108px);
}

.launchPurplePanel__intro{
  max-width: none;
  margin: 0;
  text-align: left;
}

.launchPurplePanel__intro h3{
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -.05em;
  color: #12131a;
}

.launchPurplePanel__intro p{
  margin: 14px 0 0;
  max-width: 100%;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(18,19,26,.78);
}

.launchPurplePanel__grid{
  margin-top: clamp(28px, 4vw, 40px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 34px) clamp(20px, 2.2vw, 28px);
}

.launchPurpleItem{
  position: relative;
  min-width: 0;
}

.launchPurpleItem__media{
  position: relative;
}

.launchPurpleItem__image{
  display: block;
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
  border: 1px solid rgba(18,19,26,.08);
  background: rgba(255,255,255,.65);
  box-shadow: 0 16px 24px rgba(86, 62, 128, .08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.launchPurpleItem__image--white{
  border-color: rgba(18,19,26,.08);
  background: #fff;
  box-shadow: none;
}

.launchPurpleItem__imageInset{
  position: absolute;
  z-index: 3;
  right: -8px;
  bottom: 12px;
  width: min(58%, 230px);
  border-radius: 12px;
  border: 1px solid rgba(18,19,26,.08);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 28px rgba(18,19,26,.16);
}

.launchPurpleItem__squiggle{
  position: absolute;
  z-index: 4;
  left: calc(14% - 80px);
  bottom: 8%;
  width: 190px;
  height: 130px;
  overflow: visible;
  fill: none;
  stroke: #12131a;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 8px 10px rgba(18,19,26,.12));
  transform: rotate(1deg);
  pointer-events: none;
}

.launchPurpleItem__squiggle marker path{
  fill: none;
  stroke: #12131a;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.launchPurpleItem:hover .launchPurpleItem__image{
  transform: translateY(-4px);
  box-shadow: 0 22px 32px rgba(86, 62, 128, .12);
}

.launchPurpleItem:hover .launchPurpleItem__image--white{
  box-shadow: none;
}

.launchPurpleItem__slideshow{
  position: relative;
  width: 100%;
  aspect-ratio: 1.55 / 1;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(18,19,26,.08);
  background:
    radial-gradient(circle at 18% 16%, rgba(255,255,255,.86), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(232,244,255,.72));
  box-shadow: 0 16px 24px rgba(86, 62, 128, .08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.launchPurpleItem:hover .launchPurpleItem__slideshow{
  transform: translateY(-4px);
  box-shadow: 0 22px 32px rgba(86, 62, 128, .12);
}

.launchPurpleItem__slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transform: scale(1.025) translateX(10px);
  animation: planSlideShow 15s infinite;
}

.launchPurpleItem__slide:nth-child(1){
  animation-delay: 0s;
}

.launchPurpleItem__slide:nth-child(2){
  animation-delay: 3s;
}

.launchPurpleItem__slide:nth-child(3){
  animation-delay: 6s;
}

.launchPurpleItem__slide:nth-child(4){
  animation-delay: 9s;
}

.launchPurpleItem__slide:nth-child(5){
  animation-delay: 12s;
}

.launchPurpleItem__slideshow--three .launchPurpleItem__slide{
  animation-name: executeSlideShow;
  animation-duration: 9s;
}

.launchPurpleItem__slideshow--three .launchPurpleItem__slide:nth-child(2){
  animation-delay: 3s;
}

.launchPurpleItem__slideshow--three .launchPurpleItem__slide:nth-child(3){
  animation-delay: 6s;
}

.launchPurpleItem__slideshow[data-active-slide] .launchPurpleItem__slide{
  animation: none;
  opacity: 0;
  transform: scale(.992) translateX(-10px);
}

.launchPurpleItem__slideshow[data-active-slide="0"] .launchPurpleItem__slide:nth-child(1),
.launchPurpleItem__slideshow[data-active-slide="1"] .launchPurpleItem__slide:nth-child(2),
.launchPurpleItem__slideshow[data-active-slide="2"] .launchPurpleItem__slide:nth-child(3){
  opacity: 1;
  transform: scale(1) translateX(0);
}

.launchPurpleItem__slideshow[data-active-slide] .launchPurpleItem__slide.isActive{
  opacity: 1;
  transform: scale(1) translateX(0);
}

.launchPurpleItem__slideDots{
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 12px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.launchPurpleItem__slideshow--three .launchPurpleItem__slideDots{
  grid-template-columns: repeat(3, 1fr);
}

.launchPurpleItem__slideshow--roles .launchPurpleItem__slideDots{
  grid-template-columns: repeat(8, 1fr);
}

.launchPurpleItem__slideDots span{
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  box-shadow: 0 0 0 1px rgba(18,19,26,.06);
  overflow: hidden;
}

.launchPurpleItem__slideDots span::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #00a88f, #70a5ff);
  transform: scaleX(0);
  transform-origin: left;
  animation: planDotShow 15s infinite;
}

.launchPurpleItem__slideDots span:nth-child(2)::before{
  animation-delay: 3s;
}

.launchPurpleItem__slideDots span:nth-child(3)::before{
  animation-delay: 6s;
}

.launchPurpleItem__slideDots span:nth-child(4)::before{
  animation-delay: 9s;
}

.launchPurpleItem__slideDots span:nth-child(5)::before{
  animation-delay: 12s;
}

.launchPurpleItem__slideshow--three .launchPurpleItem__slideDots span::before{
  animation-name: executeDotShow;
  animation-duration: 9s;
}

.launchPurpleItem__slideshow--three .launchPurpleItem__slideDots span:nth-child(2)::before{
  animation-delay: 3s;
}

.launchPurpleItem__slideshow--three .launchPurpleItem__slideDots span:nth-child(3)::before{
  animation-delay: 6s;
}

.launchPurpleItem__slideshow[data-active-slide] .launchPurpleItem__slideDots span::before{
  animation: none;
  transform: scaleX(0);
}

.launchPurpleItem__slideshow[data-active-slide] .launchPurpleItem__slideDots span.isActive::before{
  transform: scaleX(1);
}

.launchPurpleItem__slideNext{
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 24px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: rgba(18,19,26,.76);
  color: #fff;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(18,19,26,.18);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.launchPurpleItem__slideNext:hover,
.launchPurpleItem__slideNext:focus-visible{
  background: rgba(18,19,26,.9);
  transform: translateY(-1px);
  box-shadow: 0 16px 26px rgba(18,19,26,.24);
}

@keyframes planSlideShow{
  0%{
    opacity: 1;
    transform: scale(1) translateX(0);
  }
  18%{
    opacity: 1;
    transform: scale(1) translateX(0);
  }
  22%,
  100%{
    opacity: 0;
    transform: scale(.992) translateX(-10px);
  }
}

@keyframes planDotShow{
  0%{
    transform: scaleX(0);
  }
  18%{
    transform: scaleX(1);
  }
  22%,
  100%{
    transform: scaleX(0);
  }
}

@keyframes executeSlideShow{
  0%{
    opacity: 1;
    transform: scale(1) translateX(0);
  }
  28%{
    opacity: 1;
    transform: scale(1) translateX(0);
  }
  33%,
  100%{
    opacity: 0;
    transform: scale(.992) translateX(-10px);
  }
}

@keyframes executeDotShow{
  0%{
    transform: scaleX(0);
  }
  28%{
    transform: scaleX(1);
  }
  33%,
  100%{
    transform: scaleX(0);
  }
}

@media (prefers-reduced-motion: reduce){
  .launchPurpleItem__slide{
    animation: none;
    opacity: 0;
    transform: none;
  }
  .launchPurpleItem__slide:first-child{
    opacity: 1;
  }
  .launchPurpleItem__slideDots{
    display: none;
  }
}

.launchPurpleItem__number{
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin: 20px 0 0 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #175be8 0%, #70a5ff 100%);
  box-shadow: 0 16px 28px rgba(23,91,232,.22);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.05em;
}

.launchPurpleItem:nth-child(2) .launchPurpleItem__number{
  background: linear-gradient(135deg, #00a88f 0%, #8ee9d6 100%);
  box-shadow: 0 16px 28px rgba(0,168,143,.2);
}

.launchPurpleItem:nth-child(3) .launchPurpleItem__number{
  background: linear-gradient(135deg, #f28a00 0%, #ffd166 100%);
  box-shadow: 0 16px 28px rgba(242,138,0,.22);
}

.launchPurpleItem:nth-child(4) .launchPurpleItem__number{
  background: linear-gradient(135deg, #653de2 0%, #653de2 100%);
  box-shadow: 0 16px 28px rgba(101, 61, 226,.2);
}

.launchPurpleItem:nth-child(5) .launchPurpleItem__number{
  background: linear-gradient(135deg, #ef4f8f 0%, #ffadc9 100%);
  box-shadow: 0 16px 28px rgba(239,79,143,.2);
}

.launchPurpleItem:nth-child(6) .launchPurpleItem__number{
  background: linear-gradient(135deg, #141823 0%, #667085 100%);
  box-shadow: 0 16px 28px rgba(20,24,35,.22);
}

.launchPurpleItem h4{
  margin: 12px 0 0;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.08;
  letter-spacing: -.04em;
  color: #12131a;
}

.launchPurpleItem p{
  margin: 14px 0 0;
  max-width: 100%;
  font-size: 15px;
  line-height: 1.62;
  color: rgba(18,19,26,.78);
}

.launchPurpleItem__link{
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2458df;
  font-size: 14px;
  font-weight: 700;
  transition: transform .25s ease;
}

.launchPurpleItem__link::after{
  content: "\2192";
  font-size: 16px;
  line-height: 1;
  transition: transform .25s ease;
}

.launchPurpleItem__link:hover{
  transform: translateX(4px);
}

.launchPurpleItem__link:hover::after{
  transform: translateX(2px);
}

.launchStoryFlow{
  position: relative;
  z-index: 1;
  margin-top: clamp(42px, 5vw, 68px);
  padding: 0 clamp(10px, 1.5vw, 18px) clamp(18px, 2vw, 30px);
}

.launchStoryFlow__intro{
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(320px, .92fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.launchStoryFlow__introCopy h3,
.launchStoryFlow__proofIntro h3{
  margin: 0;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.04;
  letter-spacing: -.045em;
  color: #12131a;
}

.launchStoryFlow__introCopy p,
.launchStoryFlow__proofIntro p{
  margin: 14px 0 0;
  max-width: 42ch;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(18,19,26,.76);
}

.launchStoryFlow__textLink,
.launchStoryFlow__quoteLink{
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2458df;
  font-size: 14px;
  font-weight: 700;
  transition: transform .25s ease;
}

.launchStoryFlow__textLink::after,
.launchStoryFlow__quoteLink::after{
  content: "\2192";
  font-size: 16px;
  line-height: 1;
  transition: transform .25s ease;
}

.launchStoryFlow__textLink:hover,
.launchStoryFlow__quoteLink:hover{
  transform: translateX(4px);
}

.launchStoryFlow__textLink:hover::after,
.launchStoryFlow__quoteLink:hover::after{
  transform: translateX(2px);
}

.launchStoryFlow__logoCluster{
  display: grid;
  grid-template-columns: repeat(4, 74px);
  justify-content: end;
  gap: 16px 18px;
}

.launchStoryFlow__logoTile{
  width: 74px;
  height: 74px;
  clip-path: polygon(25% 6%, 75% 6%, 94% 50%, 75% 94%, 25% 94%, 6% 50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(18,19,26,.1);
  transition: transform .3s ease;
}

.launchStoryFlow__logoTile:hover{
  transform: translateY(-4px);
}

.launchStoryFlow__logoTile img{
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.launchStoryFlow__logoTile--cyan{ background: linear-gradient(180deg, #33c7ff, #2e6bf3); }
.launchStoryFlow__logoTile--dark{ background: linear-gradient(180deg, #111216, #252830); }
.launchStoryFlow__logoTile--figma{ background: linear-gradient(180deg, #191c25, #2b3040); }
.launchStoryFlow__logoTile--navy{ background: linear-gradient(180deg, #193a63, #10233d); }
.launchStoryFlow__logoTile--orange{ background: linear-gradient(180deg, #ff8e4d, #ff6241); }
.launchStoryFlow__logoTile--gold{ background: linear-gradient(180deg, #ffd85e, #f7b500); }
.launchStoryFlow__logoTile--green{ background: linear-gradient(180deg, #a6db57, #6aa419); }

.launchCollectionStrip{
  position: relative;
  margin: clamp(42px, 5vw, 68px) auto 0;
  max-width: 1120px;
  display: grid;
  grid-template-columns: minmax(280px, .84fr) minmax(320px, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  padding: clamp(42px, 5vw, 62px) clamp(26px, 4vw, 42px);
  background: linear-gradient(180deg, #cfe0ff 0%, #bfd3f6 100%);
  clip-path: polygon(0 14%, 100% 0, 100% 100%, 0 100%);
}

.launchCollectionStrip__eyebrow{
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: #2b67e0;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}

.launchCollectionStrip__copy h3{
  margin: 14px 0 0;
  font-size: clamp(32px, 3.7vw, 50px);
  line-height: 1.02;
  letter-spacing: -.05em;
  color: #12131a;
}

.launchCollectionStrip__copy p{
  margin: 16px 0 0;
  max-width: 40ch;
  font-size: 16px;
  line-height: 1.62;
  color: rgba(18,19,26,.78);
}

.launchCollectionStrip__visual{
  position: relative;
  min-height: 280px;
}

.launchCollectionStrip__grid{
  position: absolute;
  right: 40px;
  top: 30px;
  width: 180px;
  height: 140px;
  background-image:
    linear-gradient(rgba(255,255,255,.72) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.72) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: .8;
}

.launchCollectionStrip__panel{
  position: absolute;
  border-radius: 18px;
  box-shadow: 0 24px 34px rgba(54, 80, 130, .18);
}

.launchCollectionStrip__panel--base{
  left: 40px;
  bottom: 12px;
  width: 120px;
  filter: grayscale(.15);
}

.launchCollectionStrip__panel--front{
  right: 28px;
  top: 18px;
  width: 220px;
}

.launchCollectionStrip__node{
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 18px 28px rgba(54, 80, 130, .16);
}

.launchCollectionStrip__node img{
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.launchCollectionStrip__node--one{
  right: 176px;
  top: 78px;
  background: #2a6be4;
}

.launchCollectionStrip__node--two{
  right: 108px;
  top: 124px;
  background: #1f57d4;
}

.launchCollectionStrip__node--three{
  right: 24px;
  bottom: 24px;
}

.launchStoryFlow__proof{
  margin-top: clamp(38px, 5vw, 56px);
}

.launchStoryFlow__proofIntro{
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.launchStoryFlow__proofIntro p{
  max-width: 68ch;
  margin-left: auto;
  margin-right: auto;
}

.launchStoryFlow__quoteShell{
  position: relative;
  margin: clamp(26px, 3.5vw, 34px) auto 0;
  padding-bottom: 68px;
}

.launchStoryFlow__quoteControls{
  width: min(100%, 1160px);
  margin: 0 auto;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 12px;
}

.launchStoryFlow__quoteNav{
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #08090d;
  box-shadow: none;
  cursor: pointer;
  transition:
    transform var(--dur-hover) var(--ease-hover),
    background-color var(--dur-hover) var(--ease-hover);
}

.launchStoryFlow__quoteNav:hover{
  transform: translateY(-1px);
  background: #24145E;
}

.launchStoryFlow__quoteNav:focus-visible{
  outline: 3px solid rgba(101, 61, 226, .28);
  outline-offset: 3px;
}

.launchStoryFlow__quoteNav svg{
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.launchStoryFlow__quoteViewport{
  --quote-gap: clamp(28px, 3.8vw, 56px);
  --quote-hover-room: clamp(32px, 2.8vw, 56px);
  width: 100vw;
  margin-top: calc(0px - var(--quote-hover-room));
  margin-left: calc(50% - 50vw);
  padding-top: var(--quote-hover-room);
  padding-inline: clamp(28px, 7vw, 140px);
  display: flex;
  align-items: flex-end;
  gap: var(--quote-gap);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: none;
  scrollbar-width: none;
}

.launchStoryFlow__quoteViewport::-webkit-scrollbar{
  display: none;
}

.launchStoryFlow__quoteViewport:focus-visible{
  outline: 3px solid rgba(101, 61, 226, .28);
  outline-offset: 8px;
}

.launchStoryFlow__quoteCard{
  --quote-panel: #653de2;
  --quote-photo-bg: #e6ddff;
  --quote-photo-width: clamp(206px, 15.45vw, 283px);
  --quote-photo-height: clamp(240px, 18vw, 330px);
  --quote-photo-offset-x: 0px;
  --quote-photo-mobile-width: 197px;
  --quote-card-pad-bottom: clamp(36px, 4vw, 52px);
  --quote-card-hover-growth: var(--quote-hover-room);
  position: relative;
  display: flex;
  align-items: stretch;
  flex: 0 0 clamp(760px, 49vw, 940px);
  min-width: 0;
  max-width: none;
  min-height: 0;
  padding: clamp(42px, 4.5vw, 62px) clamp(42px, 4.5vw, 62px) var(--quote-card-pad-bottom) clamp(320px, 21vw, 370px);
  background: transparent;
  overflow: visible;
  scroll-snap-align: start;
}

.launchStoryFlow__quoteCard::before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: clamp(210px, 15vw, 250px);
  z-index: 0;
  border-radius: 18px;
  background: var(--quote-panel);
  transition: top .42s var(--ease-hover);
}

.launchStoryFlow__quoteCard--olivia{
  --quote-panel: #653de2;
  --quote-photo-bg: #e7ddff;
  --quote-photo-width: clamp(182px, 13.65vw, 250px);
  --quote-photo-offset-x: clamp(72px, 5vw, 104px);
  --quote-photo-mobile-width: 174px;
}

.launchStoryFlow__quoteCard--olivia .launchStoryFlow__quoteVisual{
  z-index: 3;
}

.launchStoryFlow__quoteCard--fiona{
  --quote-panel: #456f1e;
  --quote-photo-bg: #d8f5a6;
  --quote-photo-width: clamp(206px, 15.45vw, 283px);
  --quote-card-hover-growth: clamp(16px, 1.4vw, 28px);
  --quote-photo-mobile-width: 197px;
}

.launchStoryFlow__quoteCard--john{
  --quote-panel: #1e5dbd;
  --quote-photo-bg: #d9e8ff;
  --quote-photo-width: clamp(206px, 15.45vw, 283px);
  --quote-card-hover-growth: clamp(16px, 1.4vw, 28px);
  --quote-photo-mobile-width: 197px;
}

.launchStoryFlow__quoteCard--marcus{
  --quote-panel: #8b3f1f;
  --quote-photo-bg: #ffe0bd;
  --quote-photo-width: clamp(206px, 15.45vw, 283px);
  --quote-card-hover-growth: clamp(16px, 1.4vw, 28px);
  --quote-photo-mobile-width: 197px;
}

.launchStoryFlow__quoteVisual{
  position: absolute;
  left: var(--quote-photo-offset-x);
  top: auto;
  bottom: 0;
  transform: none;
  z-index: 2;
  width: var(--quote-photo-width);
  height: var(--quote-photo-height);
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 18px;
  background: var(--quote-photo-bg);
  overflow: hidden;
}

.launchStoryFlow__quoteShape{
  position: absolute;
  display: block;
}

.launchStoryFlow__quoteShape--gold{
  left: 4%;
  top: 14px;
  width: 92px;
  height: 190px;
  background: #ffad1f;
  transform: skew(-18deg);
}

.launchStoryFlow__quoteShape--violet{
  right: -20px;
  top: 48px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: #a042f0;
}

.launchStoryFlow__quoteShape--emeraldArch{
  left: -18px;
  top: 22px;
  width: 130px;
  height: 190px;
  border-radius: 92px 92px 18px 18px;
  background: #23c89b;
  transform: rotate(-8deg);
}

.launchStoryFlow__quoteShape--amberDot{
  right: -18px;
  top: 38px;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: #f5aa20;
}

.launchStoryFlow__quoteShape--bluePlate{
  left: 40%;
  bottom: 12px;
  width: 160px;
  height: 64px;
  border-radius: 999px;
  background: #2376f5;
  transform: rotate(9deg);
}

.launchStoryFlow__quoteShape--cyanRing{
  left: -20px;
  top: 52px;
  width: 132px;
  height: 132px;
  border: 20px solid #30d6ff;
  border-radius: 999px;
}

.launchStoryFlow__quoteShape--indigoDiamond{
  right: -28px;
  top: 58px;
  width: 112px;
  height: 112px;
  background: #6248f0;
  transform: rotate(45deg);
}

.launchStoryFlow__quoteShape--limeBars{
  left: 18%;
  bottom: 18px;
  width: 150px;
  height: 72px;
  background: #b7ff43;
  transform: skew(-14deg);
}

.launchStoryFlow__quotePortrait{
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  align-self: flex-end;
  object-fit: contain;
  object-position: center bottom;
  filter: grayscale(1) contrast(1.08);
  transform-origin: center bottom;
  transition: transform .42s var(--ease-hover);
}

@media (hover: hover) and (pointer: fine){
  .launchStoryFlow__quoteCard:hover::before{
    top: calc(0px - var(--quote-card-hover-growth));
  }
  .launchStoryFlow__quoteCard:hover .launchStoryFlow__quotePortrait{
    transform: scale(1.045);
  }
  .launchStoryFlow__quoteCard--fiona:hover .launchStoryFlow__quotePortrait,
  .launchStoryFlow__quoteCard--john:hover .launchStoryFlow__quotePortrait,
  .launchStoryFlow__quoteCard--marcus:hover .launchStoryFlow__quotePortrait{
    transform: scale(1.025);
  }
}

.launchStoryFlow__quoteCopy{
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
  color: #fff;
}

.launchStoryFlow__quoteCopy blockquote{
  margin: 0;
  max-width: none;
  font-size: clamp(23px, 1.75vw, 30px);
  line-height: 1.16;
  letter-spacing: -.03em;
}

.launchStoryFlow__quoteCard--fiona .launchStoryFlow__quoteCopy blockquote,
.launchStoryFlow__quoteCard--john .launchStoryFlow__quoteCopy blockquote,
.launchStoryFlow__quoteCard--marcus .launchStoryFlow__quoteCopy blockquote{
  max-width: none;
  font-size: clamp(18px, 1.25vw, 23px);
  line-height: 1.2;
  letter-spacing: -.03em;
}

.launchStoryFlow__quoteCopy p{
  margin: clamp(22px, 2.4vw, 34px) 0 0;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.84);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.launchStoryFlow__quoteCopy strong{
  font-size: 14px;
  color: #fff;
}

.launchStoryFlow__quoteCopy span{
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  color: rgba(255,255,255,.68);
}

.launchStoryFlow__quoteLink{
  color: #653de2;
}

.launchSupportCard{
  display: grid;
  grid-template-rows: minmax(190px, 230px) auto;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(18,19,26,.12);
  background: #f8f8fa;
  box-shadow: 0 22px 38px rgba(18,19,26,.08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.launchSupportCard:hover{
  transform: translateY(-6px);
  box-shadow: 0 30px 46px rgba(18,19,26,.12);
}

.launchSupportCard__media{
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.launchSupportCard__media--light{
  align-items: center;
  gap: 12px;
  padding: 18px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.72), transparent 48%),
    linear-gradient(180deg, #f7f8fa 0%, #f0f2f5 100%);
}

.launchSupportCard__media--dark{
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), transparent 24%),
    linear-gradient(180deg, #202024 0%, #26282e 100%);
}

.launchSupportCard__media--icons{
  align-items: center;
  padding: 24px;
}

.launchSupportCard__media--riskPriorities{
  align-items: stretch;
  justify-content: stretch;
  padding: 14px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.7), transparent 48%),
    linear-gradient(180deg, #f8f9fb 0%, #eef2f6 100%);
}

.launchRegisterIcons{
  width: min(96%, 560px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 14px;
}

.launchRegisterIcons span{
  min-height: 86px;
  border-radius: 18px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: transparent;
  box-shadow: none;
  transition: transform .3s ease, opacity .3s ease;
}

.launchRegisterIcons span:hover{
  transform: translateY(-5px) scale(1.03);
  background: transparent;
}

.launchRegisterIcons img{
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(0,0,0,.26));
}

.launchRegisterIcons small{
  display: block;
  max-width: 100%;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0,0,0,.28);
}

.launchSupportCard__image{
  display: block;
  max-width: 100%;
  height: auto;
  transition: transform .45s ease;
}

.launchSupportCard:hover .launchSupportCard__image{
  transform: scale(1.03);
}

.launchSupportCard__image--light{
  width: min(48%, 260px);
  filter: drop-shadow(0 20px 28px rgba(18,19,26,.12));
}

.launchSupportCard__image--bestAction{
  transform: translateY(8px) rotate(-1deg);
}

.launchSupportCard__image--completeness{
  transform: translateY(-8px) rotate(1deg);
}

.launchSupportCard__image--dark{
  width: min(88%, 620px);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 22px 34px rgba(0,0,0,.34);
  transform: translateY(28px);
}

.launchSupportCard__image--riskPriorities{
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  box-shadow: 0 20px 30px rgba(18,19,26,.12);
}

.launchSupportCard__body{
  padding: clamp(24px, 2.8vw, 32px) clamp(26px, 3vw, 34px) clamp(18px, 2vw, 24px);
  background: #fbfbfc;
}

.launchSupportCard__body h3{
  margin: 0;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.04;
  letter-spacing: -.04em;
  color: #12131a;
}

.launchSupportCard__body p{
  margin: 18px 0 0;
  max-width: none;
  font-size: 17px;
  line-height: 1.58;
  color: rgba(18,19,26,.8);
}

.launchMock{
  position: relative;
  min-height: 320px;
  padding: 28px;
  background: linear-gradient(90deg, #f8f6f1 0 64%, #efede8 64% 100%);
  overflow: hidden;
}

.launchMock__thread{
  width: min(360px, 84%);
  border-radius: 18px;
  border: 1px solid rgba(18,19,26,.08);
  background: #fff;
  padding: 14px;
}

.launchMock__channel{
  font-size: 13px;
  font-weight: 800;
  color: #12131a;
}

.launchMock__message{
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.launchMock__message--reply{
  margin-top: 14px;
}

.launchMock__avatar{
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #12131a;
}

.launchMock__avatar--amber{
  background: #ffb100;
}

.launchMock__avatar--violet{
  background: rgba(101,61,226,.20);
}

.launchMock__messageBody{
  min-width: 0;
}

.launchMock__meta{
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: #12131a;
}

.launchMock__meta strong{
  font-size: 12px;
}

.launchMock__meta span{
  font-size: 11px;
  color: rgba(18,19,26,.42);
}

.launchMock__messageBody p{
  margin: 2px 0 0;
  max-width: 26ch;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(18,19,26,.78);
}

.launchMock__composer{
  margin-top: 18px;
  border: 1px solid rgba(18,19,26,.16);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.launchMock__composerText{
  display: block;
  padding: 10px 12px;
  font-size: 11px;
  color: rgba(18,19,26,.38);
  border-bottom: 1px solid rgba(18,19,26,.08);
}

.launchMock__composerTools{
  display: flex;
  gap: 10px;
  padding: 10px 12px;
}

.launchMock__composerTools span{
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: rgba(18,19,26,.18);
}

.launchMock__actionPill{
  position: absolute;
  top: 60px;
  right: 40px;
  padding: 9px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(18,19,26,.08);
  font-size: 13px;
  color: rgba(18,19,26,.78);
}

.launchMock__ownerPill{
  position: absolute;
  top: 96px;
  right: 66px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffb100;
  font-size: 12px;
  font-weight: 800;
  color: #12131a;
}

.launchMock__arrow{
  position: absolute;
  left: calc(64% - 16px);
  top: 96px;
  width: 54px;
  height: 124px;
  border-right: 4px solid #12131a;
  border-bottom: 4px solid #12131a;
  border-radius: 0 0 36px 0;
  transform: rotate(18deg);
}

.launchMock__arrow::after{
  content: "";
  position: absolute;
  right: -7px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  border-right: 4px solid #12131a;
  border-bottom: 4px solid #12131a;
  transform: rotate(45deg);
}

.launchMock__card{
  position: absolute;
  right: 20px;
  bottom: 30px;
  width: min(280px, calc(100% - 60px));
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(18,19,26,.08);
  background: rgba(255,255,255,.94);
}

.launchMock__cardBadge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: #ecf3ff;
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 800;
}

.launchMock__card p{
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
  color: #12131a;
}

.launchMock__card span{
  display: block;
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(18,19,26,.62);
}

.launchSection__detail{
  grid-column: 2;
  align-self: start;
  padding: clamp(30px, 3vw, 42px) clamp(28px, 3vw, 46px) clamp(30px, 3vw, 42px) clamp(24px, 2.6vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.launchSection__detail h3{
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -.04em;
  color: #12131a;
}

.launchSection__detail p{
  margin: 18px 0 0;
  max-width: 30ch;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(18,19,26,.8);
}

.launchSection__link{
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1d4ed8;
  font-size: 16px;
  font-weight: 700;
}

.launchSupportCard__link{
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1d4ed8;
  font-size: 16px;
  font-weight: 700;
  transition: transform .25s ease;
}

.launchSection__link::after{
  content: "\2192";
  font-size: 18px;
  line-height: 1;
}

.launchSupportCard__link::after{
  content: "\2192";
  font-size: 18px;
  line-height: 1;
  transition: transform .25s ease;
}

.launchSupportCard__link:hover{
  transform: translateX(4px);
}

.launchSupportCard__link:hover::after{
  transform: translateX(2px);
}

@keyframes trustIndustryMarquee{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(calc(-50% - 14px));
  }
}

.hero__loginShell{
  display:flex;
  justify-content:center;
  margin-top: 42px;
}

html.loginDocument{
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.loginPage{
  height: 100vh;
  height: 100svh;
  padding-top: 0;
  background: #f4f5f7;
  color: #172b4d;
  overflow: hidden;
}

.loginShell{
  position: relative;
  box-sizing: border-box;
  height: 100vh;
  height: 100svh;
  display:grid;
  place-items:center;
  overflow: hidden;
  padding: clamp(12px, 3svh, 28px) 20px;
}

.loginPanel{
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  width: min(430px, calc(100vw - 36px));
  max-height: calc(100svh - clamp(24px, 6svh, 56px));
  padding: clamp(20px, 3svh, 30px) 44px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border: 1px solid rgba(9,30,66,.06);
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(9,30,66,.10);
}

.loginPanel__brand{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
  color: #653de2;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: .15em;
  text-decoration: none;
  border-bottom: 0;
}

.loginPanel__brand:hover,
.loginPanel__brand:focus,
.loginPanel__brand:focus-visible,
.loginPanel__brand span{
  text-decoration: none;
  border-bottom: 0;
}

.loginPanel__brand img{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: none;
}

.loginPanel__title{
  text-align:center;
  margin: clamp(16px, 2.5svh, 24px) 0 12px;
  color: #172b4d;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0;
}

.authCard--login{
  width: 100%;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.loginPage .authForm--login{
  gap: 10px;
}

.loginLabel{
  font-size: 12px;
  font-weight: 800;
  color: #42526e;
}

.loginLabel span{
  color: #de350b;
}

.loginPage .input{
  height: 40px;
  border-radius: 10px;
  border: 1px solid #dfe1e6;
  background: #f4f5f7;
  color: #172b4d;
  font-size: 15px;
  font-weight: 400;
  box-shadow: none;
}

.loginPage .input::placeholder{
  color: #6b778c;
}

.loginPage .input:focus,
.loginPage .input:focus-visible,
.loginPage select.input:focus-visible{
  border: 2px solid #653de2;
  background: #fff;
  box-shadow: none;
}

.loginRemember{
  display:flex;
  align-items:center;
  gap: 9px;
  color: #172b4d;
  font-size: 15px;
  line-height: 1;
  cursor:pointer;
  margin: 0 0 6px;
}

.loginRemember input{
  appearance: none;
  width: 15px;
  height: 15px;
  margin: 0;
  border: 1px solid #97a0af;
  border-radius: 2px;
  background: #fff;
  display:grid;
  place-items:center;
}

.loginRemember input:checked{
  border-color: #653de2;
  background: #653de2;
}

.loginRemember input:checked::after{
  content: "";
  width: 7px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

.loginRemember__info{
  width: 17px;
  height: 17px;
  display:inline-grid;
  place-items:center;
  border-radius: 999px;
  background: #653de2;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  font-style: normal;
}

.loginPage #pwWrap:not(.hidden){
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.loginPasswordLinks{
  display:flex;
  flex-direction:column;
  gap: 6px;
}

.loginPage .loginContinue{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  min-height: 42px;
  border-radius: 10px;
  background: #653de2;
  border-color: #653de2;
  color: #fff;
  font-weight: 800;
  box-shadow: none;
}

.loginPage .loginContinue:hover{
  background: #24145E;
  border-color: #24145E;
  transform: none;
  box-shadow: none;
}

.loginContinue__label{
  line-height: 1;
}

.loginContinue__spinner{
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,.34);
  border-top-color: #fff;
  border-radius: 999px;
  animation: loginButtonSpin .75s linear infinite;
}

.loginContinue__spinner[hidden]{
  display:none;
}

.loginPage .loginContinue.isLoading{
  cursor: wait;
}

@keyframes loginButtonSpin{
  to{
    transform: rotate(360deg);
  }
}

.loginOr{
  justify-content:center;
  margin: clamp(14px, 2svh, 20px) 0 12px;
  color: #5e6c84;
}

.loginPage .orText{
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.loginSocialStack{
  display:grid;
  gap: 10px;
}

.loginPage .btnSocial{
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid #c1c7d0;
  background: #fff;
  color: #172b4d;
  font-weight: 400;
  box-shadow: none;
}

.loginPage .btnSocial + .btnSocial{
  margin-top: 0;
}

.loginPage .btnSocial:hover{
  border-color: #a5adba;
  background: #f7f8f9;
  transform: none;
  box-shadow: none;
}

.loginPage .btnSocial--emailCode{
  color: #42526e;
}

.loginPage .btnSocial--sso{
  color: #253858;
}

.loginPage .btnSocial--sso .gIcon img,
.loginPage .btnSocial--emailCode .gIcon img{
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.recoveryView{
  margin-top: 2px;
}

.recoveryForm{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.recoveryForm .loginLabel{
  margin-bottom: 0;
}

.recoveryForm .input{
  height: 40px;
}

.recoveryForm .loginContinue{
  margin-top: 0;
}

.recoveryStatus{
  min-height: 18px;
  margin: 0;
  color: #5e6c84;
  font-size: 12px;
  line-height: 1.45;
  text-align:center;
}

.recoveryStatus:empty{
  display:none;
}

.recoveryStatus.is-error{
  color: #b42318;
}

.recoveryStatus.is-success{
  color: #166534;
}

.resetPasswordMeta{
  margin: 0 0 14px;
  color: #42526e;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.resetPasswordHint{
  margin: 6px 0 0;
  color: #6b778c;
  font-size: 12px;
  line-height: 1.45;
}

.resetPasswordMatch{
  display:flex;
  align-items:center;
  gap: 8px;
  min-height: 18px;
  margin: -2px 0 0;
  color: #6b778c;
  font-size: 12px;
  line-height: 1.45;
}

.resetPasswordMatch:empty{
  display:none;
}

.resetPasswordMatch::before{
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: currentColor;
}

.resetPasswordMatch.is-match{
  color: #166534;
}

.resetPasswordMatch.is-mismatch{
  color: #b42318;
}

.resetPasswordPage #rpPasswordConfirm[data-match-state="match"]{
  border-color: #16a34a;
  background: #f0fdf4;
}

.resetPasswordPage #rpPasswordConfirm[data-match-state="match"]:focus,
.resetPasswordPage #rpPasswordConfirm[data-match-state="match"]:focus-visible{
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, .16);
}

.resetPasswordPage #rpPasswordConfirm[data-match-state="mismatch"]{
  border-color: #dc2626;
  background: #fff5f5;
}

.resetPasswordPage #rpPasswordConfirm[data-match-state="mismatch"]:focus,
.resetPasswordPage #rpPasswordConfirm[data-match-state="mismatch"]:focus-visible{
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, .14);
}

.loginLinks{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: clamp(16px, 2.5svh, 22px);
}

.loginLinks--recovery{
  margin-top: clamp(16px, 2.5svh, 22px);
}

.loginLinks a{
  color: #653de2;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.loginLinks span{
  color: #6b778c;
  font-size: 13px;
}

.loginLinks a:hover{
  color: #24145E;
}

.loginPanel__footer{
  margin-top: clamp(14px, 2svh, 18px);
  padding-top: clamp(14px, 2svh, 18px);
  border-top: 1px solid #dfe1e6;
  text-align:center;
  color: #172b4d;
  font-size: 12px;
}

.loginPanel__footerBrand{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  margin-bottom: 8px;
  color: #6b778c;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .08em;
}

.loginPanel__footerBrand img{
  width: 22px;
  height: 22px;
  border-radius: 7px;
  filter: grayscale(1);
  opacity: .65;
}

.loginPanel__footer p{
  margin: 7px 0 0;
}

.loginPanel__footer a{
  color: #653de2;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.loginIllustration{
  position: fixed;
  bottom: -34px;
  width: min(30vw, 450px);
  min-width: 280px;
  pointer-events:none;
  user-select:none;
  opacity: .95;
}

.loginIllustration--left{
  left: -44px;
}

.loginIllustration--right{
  right: -96px;
  bottom: -8px;
  width: min(35vw, 560px);
  min-width: 340px;
}

.demoPopup{
  position: fixed;
  inset: 0;
  z-index: 1190;
  display: grid;
  place-items: center;
  padding: 0;
  pointer-events: none;
}

.demoPopup[hidden]{
  display: none;
}

.demoPopup.is-open{
  pointer-events: auto;
}

.demoPopup__scrim{
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.42);
  backdrop-filter: blur(8px);
  opacity: 0;
  cursor: pointer;
  transition: opacity 220ms var(--ease-reveal);
}

.demoPopup.is-open .demoPopup__scrim{
  opacity: 1;
}

.demoPopup__dialog{
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  color: #16131f;
  box-shadow: 0 30px 90px rgba(15,23,42,.28);
  opacity: 0;
  transform: translateY(12px) scale(.98);
  transition:
    opacity 240ms var(--ease-reveal),
    transform 240ms var(--ease-reveal);
}

.demoPopup.is-open .demoPopup__dialog{
  opacity: 1;
  transform: translateY(0) scale(1);
}

.demoPopup__close{
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #16131f;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.demoPopup__close:hover{
  background: rgba(255,255,255,.28);
}

.demoPopup__close:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,.54);
}

.demoPopup__inner{
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  min-height: 360px;
  padding: 42px 0;
  display: grid;
  grid-template-columns: minmax(340px, .86fr) minmax(420px, 1fr);
  align-items: stretch;
  gap: clamp(24px, 3.4vw, 48px);
}

.demoPopup__content{
  display: grid;
  align-content: center;
  gap: 18px;
  text-align: left;
}

.demoPopup__copy{
  display: grid;
  gap: 8px;
}

.demoPopup__eyebrow{
  margin: 0;
  color: rgba(101, 61, 226,.86);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.demoPopup__copy h2{
  margin: 0;
  color: #16131f;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0;
}

.demoPopup__titleMark{
  position: relative;
  display: inline-block;
}

.demoPopup__titleMark::after{
  content: "";
  position: absolute;
  left: 4%;
  right: 2%;
  bottom: -7px;
  height: 10px;
  border-bottom: 2px solid #f59e0b;
  border-radius: 50%;
  transform: rotate(-2deg);
}

.demoPopup__copy p{
  margin: 0;
  max-width: 68ch;
  color: rgba(22,19,31,.82);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.45;
}

.demoPopupForm{
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 168px;
  gap: 14px;
  align-items: center;
  max-width: 560px;
}

.demoPopup__visual{
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 360px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.demoPopup__visual img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.demoPopupForm input{
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 2px solid #16131f;
  border-radius: 12px;
  background: #fff;
  color: #16131f;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  outline: none;
}

.demoPopupForm input::placeholder{
  color: rgba(22,19,31,.46);
}

.demoPopupForm input:focus{
  box-shadow: 0 0 0 4px rgba(255,255,255,.36);
}

.demoPopupForm input.is-invalid{
  border-color: #b91c1c;
  box-shadow: 0 0 0 4px rgba(185,28,28,.12);
}

.demoPopupForm button{
  min-height: 52px;
  border: 1px solid rgba(101, 61, 226,.28);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--btn1), var(--btn2));
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: none;
}

.demoPopupForm button:hover{
  background: #24145E;
}

.demoPopupForm button:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(255,255,255,.46);
}

.demoPopup__footer{
  margin: -4px 0 0;
  color: rgba(22,19,31,.58);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.demoPopup__status{
  min-height: 18px;
  margin: -10px 0 0;
  color: #7f1d1d;
  font-size: 13px;
  font-weight: 900;
}

.exitTrialPopup{
  position: fixed;
  inset: 0;
  z-index: 1210;
  display: grid;
  place-items: center;
  padding: 24px;
  pointer-events: none;
}

.exitTrialPopup[hidden]{
  display: none;
}

.exitTrialPopup.is-open{
  pointer-events: auto;
}

.exitTrialPopup__scrim{
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.42);
  backdrop-filter: blur(8px);
  opacity: 0;
  cursor: pointer;
  transition: opacity 220ms var(--ease-reveal);
}

.exitTrialPopup.is-open .exitTrialPopup__scrim{
  opacity: 1;
}

.exitTrialPopup__dialog{
  position: relative;
  z-index: 1;
  width: min(720px, calc(100vw - 32px));
  overflow: visible;
  border: 1px solid rgba(18,19,26,.10);
  border-radius: 18px;
  background: #ffffff;
  color: #16131f;
  box-shadow: 0 30px 90px rgba(15,23,42,.28);
  opacity: 0;
  transform: translateY(12px) scale(.98);
  transition:
    opacity 240ms var(--ease-reveal),
    transform 240ms var(--ease-reveal);
}

.exitTrialPopup.is-open .exitTrialPopup__dialog{
  opacity: 1;
  transform: translateY(0) scale(1);
}

.exitTrialPopup__close{
  position: absolute;
  top: 2px;
  right: -62px;
  z-index: 2;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #16131f;
  font-size: 34px;
  line-height: .8;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(15,23,42,.22);
}

.exitTrialPopup__close:hover{
  background: #f3f4f6;
}

.exitTrialPopup__close:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(101, 61, 226,.24);
}

.exitTrialPopup__inner{
  width: min(560px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(34px, 4.2vw, 42px) 0 clamp(30px, 3.8vw, 38px);
  display: grid;
  justify-items: center;
}

.exitTrialPopup__content{
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.exitTrialPopup__inner h2{
  margin: 0;
  max-width: 17ch;
  color: #16131f;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0;
}

.exitTrialPopup__crown{
  display: inline-block;
  width: .94em;
  height: .94em;
  margin-left: .08em;
  transform: translateY(-.1em) rotate(10deg);
  object-fit: contain;
  vertical-align: baseline;
}

.exitTrialPopup__inner p{
  margin: 0;
}

.exitTrialPopup__content > p:not(.exitTrialPopup__footer){
  max-width: 38ch;
  color: rgba(22,19,31,.76);
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.45;
}

.exitTrialPopup__timer{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 12px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #16131f;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.exitTrialPopup__timerUnderline{
  display: block;
  width: min(220px, 48vw);
  height: 12px;
  margin: -8px 0 0;
  background:
    radial-gradient(80% 120% at 50% -30%, transparent 66%, #f59e0b 68%, #f59e0b 74%, transparent 76%);
  transform: rotate(-1deg);
}

.exitTrialPopup__code{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 30px;
  padding: 5px 12px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: rgba(22,19,31,.76);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.exitTrialPopup__code strong{
  color: #16131f;
  font-weight: 950;
  letter-spacing: .04em;
}

.exitTrialPopupForm{
  width: min(100%, 500px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 178px;
  gap: 10px;
  align-items: center;
}

.exitTrialPopupForm input{
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 2px solid #16131f;
  border-radius: 14px;
  background: #fff;
  color: #16131f;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  outline: none;
}

.exitTrialPopupForm input::placeholder{
  color: rgba(22,19,31,.48);
}

.exitTrialPopupForm input:focus{
  border-color: var(--btn1);
  box-shadow: 0 0 0 4px rgba(101, 61, 226,.16);
}

.exitTrialPopupForm input.is-invalid{
  border-color: #b91c1c;
  box-shadow: 0 0 0 4px rgba(185,28,28,.12);
}

.exitTrialPopup__cta{
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(101, 61, 226,.28);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--btn1), var(--btn2));
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.exitTrialPopup__cta:hover{
  background: #24145E;
}

.exitTrialPopup__ctaCrown{
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: block;
  object-fit: contain;
  transform-origin: 50% 60%;
  transform: translateY(-2px);
  transition: transform var(--dur-hover) var(--ease-hover);
}

.exitTrialPopup__cta:hover .exitTrialPopup__ctaCrown{
  transform: translateY(-2px) rotate(18deg);
}

.exitTrialPopup__cta:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(101, 61, 226,.20);
}

.exitTrialPopup__later{
  width: min(100%, 360px);
  min-height: 38px;
  margin-top: -6px;
  border: 0;
  background: transparent;
  color: rgba(22,19,31,.66);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.exitTrialPopup__later:hover{
  color: #24145E;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.exitTrialPopup__later:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(101, 61, 226,.22);
}

.exitTrialPopup__later.is-message{
  color: #b91c1c;
  font-weight: 900;
  cursor: default;
  text-decoration: none;
}

.exitTrialPopup__later.is-message:hover{
  color: #b91c1c;
  text-decoration: none;
}

.exitTrialPopup__status{
  margin: 0;
  color: #b91c1c;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.exitTrialPopup__status:empty{
  display: none;
}

.exitTrialPopup__footer{
  margin-top: -8px;
  color: rgba(22,19,31,.58);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.exitTrialPopup__visual{
  margin: -4px 0 0;
  min-width: 0;
  display: grid;
  place-items: center;
}

.exitTrialPopup__visual img{
  display: block;
  width: min(56vw, 220px);
  height: auto;
  object-fit: contain;
}

.trialModal{
  position: fixed;
  inset: 0;
  z-index: 1220;
  display: grid;
  place-items: start center;
  padding: clamp(56px, 9vh, 84px) 24px 24px;
  pointer-events: none;
}

.trialModal[hidden]{
  display: none;
}

.trialModal.is-open{
  pointer-events: auto;
}

.trialModal__backdrop{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #fff;
  opacity: 0;
  cursor: pointer;
  transition: opacity 220ms var(--ease-reveal);
}

.trialIconMatrix{
  position: absolute;
  inset: 18px -150px;
  display: grid;
  grid-template-columns: repeat(14, 82px);
  grid-auto-rows: 82px;
  justify-content: center;
  align-content: space-between;
  gap: 38px 52px;
  opacity: .28;
  transform: scale(1.08);
  pointer-events: none;
}

.trialIconMatrix img{
  width: 58px;
  height: 58px;
  align-self: center;
  justify-self: center;
  object-fit: contain;
}

.trialModal__backdrop::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.48);
}

.trialModal.is-open .trialModal__backdrop{
  opacity: 1;
}

.trialModal__dialog{
  position: relative;
  z-index: 1;
  width: min(598px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(15,23,42,.24);
  opacity: 0;
  transform: translateY(10px) scale(.98);
  transition:
    opacity 240ms var(--ease-reveal),
    transform 240ms var(--ease-reveal);
}

.trialModal.is-open .trialModal__dialog{
  opacity: 1;
  transform: translateY(0) scale(1);
}

.trialModal__close{
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(18,19,26,.56);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.trialModal__close:hover{
  background: #f3f4f6;
  color: rgba(18,19,26,.86);
}

.trialModal__close:focus-visible{
  outline: none;
  box-shadow: var(--focus-ring);
}

.trialModal__content{
  padding: 72px 68px 76px;
  text-align: center;
}

.trialModal__title{
  position: relative;
  display: inline-block;
  margin: 0;
  color: #2d2f36;
  font-size: clamp(28px, 4vw, 32px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.trialModal__title::after{
  content: "";
  position: absolute;
  left: 29%;
  right: 14%;
  bottom: -8px;
  height: 10px;
  border-bottom: 2px solid #f59e0b;
  border-radius: 50%;
  transform: rotate(-2deg);
}

.trialModal__subcopy{
  margin: 14px 0 28px;
  color: #2d2f36;
  font-size: 17px;
  line-height: 1.45;
}

.trialSignupForm{
  text-align: left;
}

.trialSignupForm__label{
  display: block;
  margin: 0 0 5px;
  color: rgba(18,19,26,.76);
  font-size: 14px;
  font-weight: 800;
}

.trialSignupForm__row{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 10px;
}

.trialSignupForm__field{
  width: 100%;
  min-height: 48px;
  padding: 11px 16px;
  border: 1px solid rgba(18,19,26,.18);
  border-radius: 24px;
  background: #fff;
  color: rgba(18,19,26,.9);
  font-size: 18px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.trialSignupForm__field::placeholder{
  color: rgba(18,19,26,.58);
}

.trialSignupForm__field:focus{
  border-color: #155eb8;
  box-shadow: 0 0 0 3px rgba(21,94,184,.12);
}

.trialSignupForm__field.is-invalid{
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,.1);
}

.trialSignupForm__submit{
  min-height: 48px;
  border: 0;
  border-radius: 24px;
  background-color: #653de2;
  color: #fff;
  font-family: inherit;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease;
}

.trialSignupForm__submit:hover{
  background-color: #24145E;
  box-shadow: none;
  transform: none;
}

.trialSignupForm__submit:focus-visible{
  outline: none;
  box-shadow: var(--focus-ring);
}

.trialSignupForm__hint{
  margin: 14px 0 28px;
  color: rgba(18,19,26,.56);
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

.trialSignupForm__hint--error{
  color: #dc2626;
  text-align: left;
}

.trialModal__divider{
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 18px 28px;
  color: rgba(18,19,26,.78);
  font-size: 15px;
}

.trialModal__divider::before,
.trialModal__divider::after{
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: rgba(18,19,26,.14);
}

.trialModal__divider span{
  flex: 0 0 auto;
}

.trialOauthGrid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.trialOauthButton{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  border: 1px solid rgba(18,19,26,.12);
  border-radius: 22px;
  background: #fff;
  color: rgba(18,19,26,.76);
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
}

.trialOauthButton:hover{
  background: #f3f4f6;
}

.trialOauthButton:focus-visible{
  outline: none;
  box-shadow: var(--focus-ring);
}

.trialModal__login{
  margin: 32px 0 0;
  color: rgba(18,19,26,.72);
  font-size: 15px;
}

.trialModal__login a{
  color: #653de2;
  font-weight: 800;
  text-decoration: none;
}

.trialModal__login a:hover{
  text-decoration: underline;
}

.trialVerify{
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  width: 100%;
  padding: clamp(54px, 8vh, 96px) clamp(24px, 8vw, 150px) 44px;
  color: #2d2f36;
  text-align: center;
}

.trialVerify[hidden]{
  display: none;
}

.trialVerify__title{
  margin: 0;
  max-width: 16ch;
  color: #24252d;
  font-size: clamp(36px, 5.2vw, 54px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

.trialVerify__lead{
  width: 100%;
  max-width: 760px;
  margin: 16px 0 34px;
  color: rgba(45,47,54,.78);
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 600;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.trialVerify__lead strong{
  color: rgba(45,47,54,.94);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.trialVerify__form{
  width: 100%;
  max-width: 780px;
  min-width: 0;
  justify-self: center;
  display: grid;
  gap: 28px;
}

.trialVerify__codeGrid{
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(6, minmax(58px, 90px));
  justify-content: center;
  gap: clamp(12px, 2.1vw, 28px);
}

.trialVerify__codeInput{
  width: 100%;
  aspect-ratio: 1 / 1.08;
  min-width: 0;
  border: 2px solid #8a8d96;
  border-radius: 5px;
  background: #fff;
  color: #24252d;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .16s ease, box-shadow .16s ease;
}

.trialVerify__codeInput:focus{
  border-color: #1f7ae0;
  box-shadow: 0 0 0 3px rgba(31,122,224,.22);
}

.trialVerify__codeInput.is-invalid{
  border-color: #dc2626;
}

.trialVerify__submit{
  width: 100%;
  min-height: 72px;
  border: 0;
  border-radius: 8px;
  background: #1f73db;
  color: #fff;
  font-family: inherit;
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 900;
  cursor: pointer;
  transition: background-color .16s ease, opacity .16s ease;
}

.trialVerify__submit:hover{
  background: #155fbd;
}

.trialVerify__submit:disabled{
  cursor: wait;
  opacity: .74;
}

.trialVerify__submit:focus-visible,
.trialVerify__resendButton:focus-visible,
.trialVerify__mailLink:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(31,122,224,.20);
}

.trialVerify__status{
  min-height: 24px;
  margin: 12px 0 24px;
  color: rgba(45,47,54,.70);
  font-size: 15px;
  font-weight: 700;
}

.trialVerify__status:empty{
  margin-bottom: 18px;
}

.trialVerify__status.is-error{
  color: #dc2626;
}

.trialVerify__status.is-ok{
  color: #1f73db;
}

.trialVerify__mailLinks{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(22px, 5vw, 52px);
  margin: 0 0 32px;
}

.trialVerify__mailLink{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #1467c8;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  text-decoration: none;
}

.trialVerify__mailLink:hover{
  text-decoration: none;
}

.trialVerify__mailLink:hover span:not([aria-hidden="true"]){
  text-decoration: underline;
  text-underline-offset: 4px;
}

.trialVerify__mailLink img{
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.trialVerify__resend{
  margin: 0;
  color: rgba(45,47,54,.78);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
}

.trialVerify__resendButton{
  border: 0;
  background: transparent;
  padding: 0;
  color: #1467c8;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.trialVerify__resendButton:hover{
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.modalOpen{
  overflow: hidden;
}

.signupCodePage{
  min-height: 100%;
  padding-top: 0;
  background: #fff;
  overflow-x: hidden;
}

.signupCodePage .topbar{
  display: none;
}

.signupCodeShell{
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  background: #fff;
  isolation: isolate;
}

.signupCodeShell::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(15,23,42,.48);
  pointer-events: none;
}

.signupCodeIconMatrix{
  position: absolute;
  inset: -260px -150px;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(14, 82px);
  grid-auto-rows: 82px;
  justify-content: center;
  align-content: center;
  gap: 38px 52px;
  opacity: .30;
  transform: scale(1.08);
  pointer-events: none;
}

.signupCodeIconMatrix img{
  width: 58px;
  height: 58px;
  align-self: center;
  justify-self: center;
  object-fit: contain;
}

.signupCodeCard{
  position: relative;
  z-index: 2;
  width: min(440px, calc(100vw - 48px));
  max-height: calc(100svh - 88px);
  min-height: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 30px 90px rgba(15,23,42,.30);
  overflow: auto;
}

.signupCodeClose{
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(18,19,26,.56);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.signupCodeClose:hover{
  background: #f3f4f6;
  color: rgba(18,19,26,.86);
}

.signupCodeClose:focus-visible{
  outline: none;
  box-shadow: var(--focus-ring);
}

.signupCodeVerify{
  padding: 44px 50px 32px;
}

.signupCodeVerify .trialVerify__title{
  max-width: 12ch;
  font-size: 30px;
  line-height: 1.04;
}

.signupCodeVerify .trialVerify__lead{
  max-width: 340px;
  margin: 12px 0 22px;
  font-size: 14px;
  line-height: 1.28;
}

.signupCodeVerify .trialVerify__form{
  max-width: 340px;
  gap: 16px;
}

.signupCodeVerify .trialVerify__codeGrid{
  grid-template-columns: repeat(6, minmax(0, 42px));
  gap: 10px;
}

.signupCodeVerify .trialVerify__codeInput{
  aspect-ratio: 1 / 1.12;
  font-size: 21px;
}

.signupCodeVerify .trialVerify__submit{
  min-height: 46px;
  background-color: var(--btn1);
  background-image: none;
  box-shadow: none;
  font-size: 18px;
  transition: background-color .18s ease, opacity .16s ease;
}

.signupCodeVerify .trialVerify__submit:hover{
  background-color: #24145E;
  background-image: none;
}

.signupCodeVerify .trialVerify__status{
  min-height: 18px;
  margin: 7px 0 16px;
  font-size: 12px;
}

.signupCodeVerify .trialVerify__mailLinks{
  gap: 18px;
  margin-bottom: 18px;
}

.signupCodeVerify .trialVerify__mailLink{
  gap: 7px;
  font-size: 16px;
}

.signupCodeVerify .trialVerify__mailLink img{
  width: 22px;
  height: 22px;
}

.signupCodeVerify .trialVerify__resend{
  font-size: 15px;
}

/* Auth card */
.authCard{
  width: min(760px, 100%);
  background: transparent;
  border: 0;
  border-radius: var(--radius-card);
  box-shadow: none;
  padding: 22px;
}
.authCard__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.authCard__kicker{
  font-weight: 900;
  font-size: 12px;
  color: rgba(18,19,26,.56);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.authCard__title{
  margin: 3px 0 0;
  font-size: 18px;
  letter-spacing:-.02em;
}
.chip{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(18,19,26,.10);
  background: rgba(18,19,26,.03);
  color: rgba(18,19,26,.72);
  font-weight: 800;
  font-size: 12px;
}

/* Social button: keep neutral (NOT purple) */
.btnSocial{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(18,19,26,.10);
  background: rgba(255,255,255,.92);
  font-weight: 800;
  cursor:pointer;
  transition: transform var(--dur-hover) var(--ease-hover), box-shadow var(--dur-hover) var(--ease-hover);
}
.btnSocial + .btnSocial{ margin-top: 10px; }
.btnSocial:hover{ transform: translateY(-1px); box-shadow: 0 12px 26px rgba(17,14,35,.08); }
.gIcon{
  width: 22px; height: 22px;
  display:grid; place-items:center;
}

.orRow{
  display:flex;
  align-items:center;
  gap: 10px;
  margin: 12px 0;
  color: rgba(18,19,26,.55);
}
.orRow .line{
  height:1px;
  flex:1;
  background: rgba(18,19,26,.10);
}
.orText{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

/* Form */
.authForm{ display:flex; flex-direction:column; gap: 10px; }
.field{ display:flex; flex-direction:column; gap: 8px; }

.input{
  width:100%;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(18,19,26,.12);
  background: rgba(255,255,255,.96);
  color: var(--ink);
  font-weight: 650;
  outline: none;
}
.input:focus{
  border-color: rgba(18,19,26,.22);
  box-shadow: 0 0 0 4px rgba(18,19,26,.08);
}
.input:focus-visible,
select.input:focus-visible{
  border-color: rgba(18,19,26,.22);
  box-shadow: 0 0 0 4px rgba(18,19,26,.08);
}
.status{
  font-size: 12.5px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(18,19,26,.10);
  background: rgba(18,19,26,.03);
  color: rgba(18,19,26,.72);
}
.loginPage .status{
  border-radius: 10px;
  border-color: #dfe1e6;
  background: #f4f5f7;
  color: #42526e;
}
.status--ok{
  border-color: rgba(34,197,94,.30);
  background: rgba(34,197,94,.08);
}
.status--warn{
  border-color: rgba(245,158,11,.30);
  background: rgba(245,158,11,.10);
}
.status--err{
  border-color: rgba(239,68,68,.30);
  background: rgba(239,68,68,.10);
}
.loginPage .status--ok{
  border-color: rgba(90,63,214,.18);
  background: rgba(90,63,214,.08);
  color: #42526e;
}
.loginPage .status--warn{
  border-color: rgba(255,171,0,.32);
  background: rgba(255,171,0,.12);
  color: #5f3811;
}
.loginPage .status--err{
  border-color: rgba(222,53,11,.26);
  background: rgba(222,53,11,.10);
  color: #ae2e24;
}

/* Links inside card: keep neutral (not purple) */
.linkBtn{
  appearance:none;
  border:0;
  background: transparent;
  padding: 0;
  margin: 0;
  color: rgba(18,19,26,.72);
  font-weight: 800;
  cursor:pointer;
  text-align:left;
}
.linkBtn:hover{ text-decoration: underline; text-underline-offset: 3px; }

.verifyLead{ margin: 6px 0 2px; color: rgba(18,19,26,.74); font-size: 13.5px; line-height: 1.5; }
.resendRow{ margin: 6px 0 0; color: rgba(18,19,26,.62); font-size: 13px; }

.error{
  margin: 0;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(239,68,68,.30);
  background: rgba(239,68,68,.10);
  color: rgba(18,19,26,.80);
}

.finePrint{
  margin: 12px 0 0;
  color: rgba(18,19,26,.55);
  font-size: 12.5px;
  line-height: 1.5;
}

/* Panel (right preview) */
.panel{
  position: sticky;
  top: 92px;
}
.panel__inner{
  border-radius: var(--radius-card);
  border: 1px solid var(--border-soft);
  background: var(--surface-1);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}
.panel__title{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.panel__title h3{
  margin: 0;
  font-size: 15px;
  letter-spacing:-.01em;
}
.badge{
  display:inline-flex;
  align-items:center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(18,19,26,.10);
  background: rgba(18,19,26,.03);
  color: rgba(18,19,26,.70);
  font-weight: 800;
  font-size: 12px;
}

/* Mini cards */
.mini{ margin-top: 12px; display:flex; flex-direction:column; gap: 10px; }
.mini__card{
  border-radius: 18px;
  border: 1px solid rgba(18,19,26,.10);
  background: rgba(255,255,255,.86);
  padding: 12px;
}
.mini__row{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  align-items:flex-start;
}
.mini__label{ font-size: 12px; color: rgba(18,19,26,.62); font-weight: 900; letter-spacing:.02em; }
.mini__meta{ font-size: 13px; color: rgba(18,19,26,.72); line-height:1.5; margin-top: 4px; }

.pill{
  display:inline-flex;
  align-items:center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(18,19,26,.10);
  background: rgba(18,19,26,.03);
  font-weight: 900;
  font-size: 11px;
  color: rgba(18,19,26,.70);
  white-space: nowrap;
}
.pill--ai,
.pill--human{
  /* keep neutral tags; no purple/green highlights */
  border-color: rgba(18,19,26,.10);
  background: rgba(18,19,26,.03);
  color: rgba(18,19,26,.70);
}

/* Sections */
.section{
  padding: 56px 0;
}

.section.sectionWrapper{
  padding: 78px 0;
}
#platform.sectionWrapper{
  padding-top: 0;
}
.section__head{
  margin-bottom: 18px;
}
.section__head--row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
}
.section h2{
  margin: 0;
  font-size: 28px;
  letter-spacing:-.03em;
}
.section__lead{
  margin: 10px 0 0;
  color: rgba(18,19,26,.70);
  line-height: 1.65;
  max-width: 80ch;
}

/* Grid + cards */
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.card{
  grid-column: span 4;
  padding: var(--space-card);
}
.card h3{
  margin: 10px 0 0;
  font-size: 16px;
  letter-spacing:-.02em;
}
.card p{
  margin: 8px 0 0;
  color: rgba(18,19,26,.70);
  line-height: 1.6;
  font-size: 14px;
}
.ctaFooterShell{
  position: relative;
  margin-top: 8px;
  padding: 24px;
}
.ctaFooterShell__grid{
  align-items: stretch;
  gap: 18px;
}
.card--cta,
.card--contact{
  border-radius: 0;
  border: 0;
  box-shadow: none;
}
.card--cta{
  padding: var(--space-card);
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.card--contact{
  padding: var(--space-card) 40px 40px;
  background: transparent;
  box-shadow: none;
}
.ctaPanel,
.contactPanel{
  display: grid;
  gap: 16px;
}
.ctaPanel__eyebrow,
.contactPanel__eyebrow{
  margin: 0;
  color: rgba(18,19,26,.64);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.ctaPanel__title{
  margin: 0;
  max-width: none;
  font-size: clamp(34px, 3.9vw, 48px);
  line-height: 1.02;
  letter-spacing: -.045em;
  color: #0f172a;
  white-space: nowrap;
}
.ctaPanel__body{
  margin: 16px 0 0;
  max-width: 58ch;
  color: rgba(18,19,26,.72);
  font-size: 18px;
  line-height: 1.78;
}
.ctaPanel__actions{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
}
.btn--ctaPrimary{
  min-width: 180px;
  min-height: 54px;
  padding-inline: 24px;
  font-size: 16px;
  font-weight: 800;
  box-shadow: none;
  transform: none;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}
.btn--dark.btn--ctaPrimary{
  background: #653de2;
  border-color: rgba(101, 61, 226,.28);
  box-shadow: none;
}
.btn--ctaPrimary:hover{
  background-color: #24145E;
  color: #fff;
  box-shadow: none;
  transform: none;
}
.btn--dark.btn--ctaPrimary:hover,
.btn--dark.btn--ctaPrimary:active{
  background: #24145E;
  border-color: rgba(101, 61, 226,.28);
  box-shadow: none;
  transform: none;
}
.ctaPanel__link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(15,23,42,.82);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: color var(--dur-hover) var(--ease-hover), transform var(--dur-hover) var(--ease-hover);
}
.ctaPanel__link:hover{
  color: var(--btn2);
  text-decoration: underline;
  text-underline-offset: 3px;
  transform: translateX(var(--offset-link-nudge));
}
.ctaPanel__link:focus-visible{
  outline: none;
  border-radius: 8px;
  box-shadow: var(--focus-ring);
}
.ctaPanel__trust{
  display: grid;
  gap: 8px;
}
.ctaPanel__trust span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  border: 0;
  color: rgba(15,23,42,.70);
  font-size: 13px;
  font-weight: 800;
}
.ctaPanel__trust span::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #38bdf8);
  box-shadow: 0 0 0 4px rgba(34,197,94,.10);
}
.contactPanel h3{
  margin: 0;
  max-width: 12ch;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.02;
  letter-spacing: -.045em;
  color: #0f172a;
}
.contactPanel p{
  margin: 0;
  max-width: 34ch;
  color: rgba(18,19,26,.72);
  font-size: 18px;
  line-height: 1.78;
}
.contactPanel .btn--ghost{
  padding: 12px 14px;
  border: 1px solid rgba(18,19,26,.10);
  border-radius: 12px;
  background: rgba(255,255,255,.84);
  color: rgba(18,19,26,.72);
  font-weight: 800;
  box-shadow: none;
  transform: none;
}
.contactPanel .btn--ghost:hover{
  background: #f3f4f6;
  color: rgba(18,19,26,.72);
  transform: none;
  box-shadow: none;
  text-decoration: none;
}
.btn--contact{
  min-height: 50px;
  margin-top: 22px;
  background: #ffffff;
  border-color: rgba(15,23,42,.10);
  color: #0f172a;
  box-shadow: none;
}
.btn--contact:hover{
  background: #f3f4f6;
  border-color: rgba(18,19,26,.12);
  color: var(--ink);
  box-shadow: none;
}
.contactPanel__note{
  max-width: none;
  padding-top: 14px;
  border-top: 1px solid rgba(148,163,184,.18);
  color: rgba(15,23,42,.56);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.closeoutCta{
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 0;
  padding: clamp(30px, 4vw, 52px) 0 0;
  background-color: #653de2;
  background: #653de2;
  color: #fff;
  clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%);
}

.closeoutCta::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, #653de2 0%, #653de2 62%, #653de2 100%);
}

.closeoutCta::after{
  display: none;
}

.closeoutCta__inner{
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(300px, .72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.closeoutCta__copy{
  max-width: 760px;
}

.closeoutCta__copy h2{
  margin: 0;
  max-width: 23ch;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.04;
  letter-spacing: -.045em;
  color: #fff;
}

.closeoutCta__button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 24px;
  padding: 0 22px;
  border-radius: 999px;
  background: #ffc400;
  color: #16120a;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.01em;
  box-shadow: 0 18px 38px rgba(71, 38, 11, .20);
  transition:
    transform var(--dur-hover) var(--ease-hover),
    box-shadow var(--dur-hover) var(--ease-hover),
    background var(--dur-hover) var(--ease-hover);
}

.closeoutCta__button:hover{
  background: #ffd231;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(71, 38, 11, .26);
}

.closeoutCta__button:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(255,255,255,.44), 0 24px 48px rgba(71, 38, 11, .26);
}

.closeoutCta__art{
  position: relative;
  min-height: clamp(150px, 18vw, 235px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.closeoutCta__image{
  width: min(39vw, 500px);
  max-width: none;
  transform: translate(4%, 6%);
  filter: drop-shadow(0 18px 28px rgba(38, 17, 95, .16));
}

@media (max-width: 960px){
  .closeoutCta{
    padding: 38px 0 0;
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  }

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

  .closeoutCta__copy h2{
    max-width: 20ch;
  }

  .closeoutCta__art{
    min-height: 210px;
    order: -1;
  }

  .closeoutCta__image{
    width: min(76vw, 500px);
    transform: translate(0, 0);
  }
}

@media (max-width: 640px){
  .closeoutCta{
    padding: 34px 0 0;
  }

  .closeoutCta__copy h2{
    font-size: clamp(30px, 9vw, 40px);
  }

  .closeoutCta__button{
    width: 100%;
    margin-top: 26px;
  }

  .closeoutCta__art{
    min-height: 180px;
  }

  .closeoutCta__image{
    width: min(92vw, 380px);
  }
}
.ic{
  width: 38px; height: 38px;
  border-radius: 14px;
  display:grid; place-items:center;
  border: 1px solid rgba(18,19,26,.10);
  background: rgba(18,19,26,.04);
  color: rgba(18,19,26,.82);
}
.span-6{ grid-column: span 6; }
.span-8{ grid-column: span 8; }
.span-4{ grid-column: span 4; }

.principles{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* Feature spotlight */
.featureSpotlight{
  position: relative;
  overflow: visible;
  padding: 28px 48px 48px;
  background: #fff;
  border: 0;
  box-shadow: none;
}

.featureSpotlight__head{
  max-width: 900px;
  margin: 0 auto 24px;
  text-align: center;
}

.featureSpotlight__head h2{
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.featureSpotlight__lead{
  margin: 16px auto 0;
  max-width: 74ch;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(18,19,26,.70);
}

.featureSpotlight__media{
  max-width: 620px;
  margin: 0 auto;
}

.featureSpotlight__summary{
  position: relative;
  width: 100vw;
  margin-top: 24px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(34px, 5vw, 72px) 0;
  background: var(--hero-highlight);
  overflow: hidden;
}

.featureSpotlight__summary::before,
.featureSpotlight__summary::after{
  content: "";
  position: absolute;
  pointer-events: none;
}

.featureSpotlight__summary::before{
  left: max(22px, calc(50% - 620px));
  top: -22px;
  width: 188px;
  height: 92px;
  background: #D6F5A3;
  clip-path: polygon(0 22%, 74% 22%, 86% 0, 100% 0, 100% 78%, 18% 78%, 0 100%);
  z-index: 0;
}

.featureSpotlight__summary::after{
  left: max(166px, calc(50% - 476px));
  top: 22px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #5b8cff;
  box-shadow:
    24px 10px 0 0 rgba(91,140,255,.42),
    52px -6px 0 0 rgba(255,177,0,.92);
  z-index: 0;
}

.featureSpotlight__summaryInner{
  width: min(1320px, calc(100% - 72px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(520px, 1.22fr);
  gap: clamp(8px, 2vw, 24px);
  align-items: center;
}

.featureSpotlightGraphic{
  position: relative;
  min-height: 0;
  max-width: 340px;
  border-radius: 28px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  margin: 0 auto;
}

.featureSpotlightGraphic__image{
  display: block;
  width: 100%;
  height: auto;
}

.featureSpotlightGraphic__cluster{
  position: absolute;
  inset: 50% auto auto 50%;
  width: 270px;
  height: 180px;
  transform: translate(-50%, -50%);
}

.featureSpotlightGraphic__shape{
  position: absolute;
  display: block;
}

.featureSpotlightGraphic__shape--green{
  left: 26px;
  top: 24px;
  width: 118px;
  height: 142px;
  background: #8dbd38;
  clip-path: polygon(34% 0, 100% 36%, 66% 100%, 0 64%);
}

.featureSpotlightGraphic__shape--blue{
  left: 92px;
  top: 34px;
  width: 150px;
  height: 66px;
  background: #2e6fd7;
  clip-path: polygon(0 8%, 88% 0, 84% 98%, 10% 92%);
}

.featureSpotlightGraphic__shape--navy{
  left: 80px;
  top: 38px;
  width: 84px;
  height: 66px;
  background: #173874;
  clip-path: polygon(18% 0, 100% 64%, 48% 100%, 0 40%);
}

.featureSpotlightGraphic__shape--orange{
  right: 10px;
  top: 56px;
  width: 74px;
  height: 48px;
  background: #ff9f1a;
  clip-path: polygon(0 22%, 86% 0, 100% 64%, 20% 100%);
}

.featureSpotlightGraphic__shape--orangeTop{
  left: 2px;
  top: 30px;
  width: 68px;
  height: 36px;
  background: #ff9f1a;
  clip-path: polygon(0 12%, 100% 40%, 86% 100%, 8% 88%);
}

.featureSpotlightGraphic__badge{
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(18,19,26,.78);
  background: #fff;
  color: #173874;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.featureSpotlightGraphic__badge--chart{
  left: 64px;
  top: 86px;
  background: #2e6fd7;
  border-color: transparent;
  color: #fff;
  font-size: 15px;
}

.featureSpotlightGraphic__badge--check{
  right: 40px;
  top: 106px;
  background: #9ac83d;
}

.featureSpotlightGraphic__path{
  position: absolute;
  border: 2px dashed rgba(18,19,26,.78);
  border-color: rgba(18,19,26,.78) transparent transparent transparent;
  border-radius: 50%;
}

.featureSpotlightGraphic__path::after{
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(18,19,26,.78);
  border-bottom: 2px solid rgba(18,19,26,.78);
  transform: rotate(45deg);
}

.featureSpotlightGraphic__path--top{
  left: 162px;
  top: 6px;
  width: 74px;
  height: 96px;
  transform: rotate(18deg);
}

.featureSpotlightGraphic__path--top::after{
  right: 4px;
  bottom: -6px;
}

.featureSpotlightGraphic__path--bottom{
  left: 98px;
  bottom: 26px;
  width: 112px;
  height: 58px;
  transform: rotate(18deg);
}

.featureSpotlightGraphic__path--bottom::after{
  left: 16px;
  top: 30px;
}

.featureSpotlightGraphic__person{
  position: absolute;
  display: block;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255,255,255,.8);
}

.featureSpotlightGraphic__person img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  transform: scale(1.65);
}

.featureSpotlightGraphic__person--top{
  left: 150px;
  top: 42px;
  width: 56px;
  height: 56px;
}

.featureSpotlightGraphic__person--top img{
  object-position: 56% 36%;
}

.featureSpotlightGraphic__person--left{
  left: 78px;
  bottom: 8px;
  width: 88px;
  height: 88px;
}

.featureSpotlightGraphic__person--left img{
  object-position: 8% 52%;
}

.featureSpotlightGraphic__person--right{
  right: 64px;
  bottom: 6px;
  width: 88px;
  height: 88px;
}

.featureSpotlightGraphic__person--right img{
  object-position: 86% 50%;
}

.featureSpotlight__summaryCopy{
  max-width: 860px;
  margin-left: -84px;
}

.featureSpotlight__summaryCopy h3{
  margin: 0;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.06;
  letter-spacing: -.05em;
}

.featureSpotlight__summaryCopy p{
  margin: 18px 0 0;
  max-width: 52ch;
  color: rgba(18,19,26,.72);
  font-size: 18px;
  line-height: 1.7;
}

.featureSpotlight__videoCrop{
  position: relative;
}

.featureSpotlight__video{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.featureSpotlight__videoToggle{
  position: absolute;
  left: auto;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  background: rgba(18,19,26,.62);
  backdrop-filter: blur(14px);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.featureSpotlight__videoToggleIcon{
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.featureSpotlight__videoToggleIcon::before,
.featureSpotlight__videoToggleIcon::after{
  content: "";
  position: absolute;
  inset: 0;
  transition: opacity 160ms ease, transform 160ms ease;
}

.featureSpotlight__videoToggleIcon::before{
  clip-path: polygon(18% 10%, 88% 50%, 18% 90%);
  background: currentColor;
  opacity: 0;
  transform: scale(.86);
}

.featureSpotlight__videoToggleIcon::after{
  inset: 1px 2px;
  border-left: 4px solid currentColor;
  border-right: 4px solid currentColor;
  opacity: 1;
  transform: scale(1);
}

.featureSpotlight__videoToggle[aria-pressed="false"] .featureSpotlight__videoToggleIcon::before{
  opacity: 1;
  transform: scale(1);
}

.featureSpotlight__videoToggle[aria-pressed="false"] .featureSpotlight__videoToggleIcon::after{
  opacity: 0;
  transform: scale(.86);
}

.featureSpotlight__videoToggle:hover{
  background: rgba(18,19,26,.78);
  border-color: rgba(255,255,255,.56);
}

.featureSpotlight__videoToggle:focus-visible{
  outline: 2px solid rgba(37,99,235,.55);
  outline-offset: 3px;
}

.featureSpotlight__shell{
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 28px;
  align-items: start;
}

.featureSpotlight__visual{
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-card);
  overflow: hidden;
}

.featureSpotlight__content{
  position: relative;
  z-index: 1;
  align-self: start;
  padding: 6px 6px 18px 10px;
}

.featureSpotlight__badge{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-featured);
  background: rgba(255,255,255,.72);
  color: #2563eb;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.featureSpotlight__content h3{
  margin: 18px 0 0;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.featureSpotlight__body{
  margin: 14px 0 0;
  max-width: 36ch;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(18,19,26,.72);
}

.featureSpotlight__testimonial{
  margin: 24px 0 0;
  padding: var(--space-card);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.featureSpotlight__testimonial blockquote{
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(18,19,26,.88);
}

.featureSpotlight__author{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.featureSpotlight__author strong{
  display: block;
  font-size: 15px;
}

.featureSpotlight__author small{
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: rgba(18,19,26,.62);
}

.featureSpotlight__actions{
  margin-top: 20px;
}

.featureSpotlight__avatar{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(37,99,235,.16), rgba(148,163,184,.18));
  color: #0f172a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.featureSpotlight__avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.workflowCard{
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  padding: var(--space-card);
  animation: none;
}

.workflowCard__topbar{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.workflowPill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,.88);
  color: rgba(18,19,26,.72);
  font-size: 12px;
  font-weight: 800;
}

.workflowPill--risk{
  color: #0f172a;
}

.workflowDot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa, #38bdf8);
  box-shadow: 0 0 0 6px rgba(96,165,250,.12);
}

.workflowCard__body{
  display: grid;
  gap: 16px;
}

.workflowCard__panel{
  border-radius: var(--radius-card);
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,.84);
}

.workflowCard__panel--primary{
  padding: 22px;
}

.workflowCard__panel--secondary{
  padding: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.88), rgba(238,242,255,.76));
}

.workflowCard__header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.workflowCard__eyebrow{
  margin: 0 0 8px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.workflowCard__header h3{
  margin: 0;
  max-width: 16ch;
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.workflowAction{
  border: 0;
  border-radius: var(--radius-control);
  background: linear-gradient(135deg, var(--btn1), var(--btn2));
  color: #fff;
  min-height: 44px;
  padding: 0 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(101, 61, 226,.22);
}

.workflowMeta{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.workflowMeta__item{
  padding: 14px;
  border-radius: var(--radius-control);
  background: rgba(248,250,252,.92);
  border: 1px solid var(--border-soft);
}

.workflowMeta__label{
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(18,19,26,.50);
}

.workflowMeta__value{
  display: block;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 800;
  color: rgba(18,19,26,.84);
}

.workflowTimeline{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(239,246,255,.88), rgba(241,245,249,.92));
}

.workflowTimeline__line{
  flex: 1 1 auto;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(59,130,246,.32), rgba(148,163,184,.28));
}

.workflowTimeline__step{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 72px;
  color: rgba(18,19,26,.56);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.workflowTimeline__icon{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(148,163,184,.24);
  background: rgba(255,255,255,.92);
  color: rgba(18,19,26,.64);
}

.workflowTimeline__step.is-complete .workflowTimeline__icon{
  border-color: rgba(59,130,246,.22);
  background: rgba(219,234,254,.94);
  color: #2563eb;
}

.workflowTimeline__step.is-active{
  color: #0f172a;
}

.workflowTimeline__step.is-active .workflowTimeline__icon{
  border-color: rgba(59,130,246,.22);
  background: rgba(219,234,254,.94);
  color: #2563eb;
}

.workflowEvidence__row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.workflowEvidence__label{
  font-size: 13px;
  font-weight: 900;
  color: rgba(18,19,26,.56);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.workflowTag{
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(59,130,246,.10);
  color: #2563eb;
  font-size: 12px;
  font-weight: 900;
}

.workflowEvidence p{
  margin: 12px 0 0;
  color: rgba(18,19,26,.78);
  line-height: 1.7;
}

.workflowEvidence__list{
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.workflowEvidence__file{
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(148,163,184,.14);
  color: rgba(18,19,26,.74);
  font-size: 14px;
  font-weight: 700;
}

.workflowEvidence__fileIcon{
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(37,99,235,.22), rgba(148,163,184,.22));
}

/* Alternating features */
.alternatingFeatures{
  display: grid;
  gap: 28px;
}

.alternatingFeature{
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
  padding: var(--space-card);
}

.alternatingFeature--plain{
  background: transparent;
  border: 0;
  box-shadow: none;
}

.alternatingFeature--reverse{
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}

.alternatingFeature__content h2{
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.alternatingFeature__body{
  margin: 16px 0 0;
  max-width: 40ch;
  color: rgba(18,19,26,.72);
  font-size: 18px;
  line-height: 1.75;
}

.alternatingFeature__quote,
.workspaceFeature__quote{
  margin: 24px 0 0;
  padding: var(--space-card);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.alternatingFeature__quote blockquote,
.workspaceFeature__quote blockquote{
  margin: 0;
  color: rgba(18,19,26,.86);
  font-size: 17px;
  line-height: 1.75;
}

.alternatingFeature__quote figcaption,
.workspaceFeature__quote figcaption{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.alternatingFeature__quote strong,
.workspaceFeature__quote strong{
  display: block;
  font-size: 15px;
}

.alternatingFeature__quote small,
.workspaceFeature__quote small{
  display: block;
  margin-top: 4px;
  color: rgba(18,19,26,.60);
  font-size: 13px;
}

.alternatingFeature__avatar{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(37,99,235,.16), rgba(148,163,184,.16));
  flex: 0 0 48px;
}

.alternatingFeature__avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.alternatingFeature__visual{
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.setupMock,
.treatmentMock{
  width: min(100%, 560px);
}

.setupMock{
  padding: var(--space-card);
}

.setupMock__header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.setupMock__eyebrow{
  margin: 0 0 8px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.setupMock__header h3{
  margin: 0;
  max-width: 14ch;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.setupMock__progress{
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(37,99,235,.10);
  color: #2563eb;
  font-size: 12px;
  font-weight: 900;
}

.setupMock__meter{
  margin-top: 20px;
  height: 12px;
  border-radius: 999px;
  background: rgba(226,232,240,.88);
  overflow: hidden;
}

.setupMock__meterFill{
  display: block;
  width: 82%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #3b82f6, #38bdf8);
}

.setupMock__list{
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.setupMock__item{
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 16px;
  border-radius: var(--radius-control);
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,.84);
  color: rgba(18,19,26,.74);
  font-weight: 700;
}

.setupMock__item.is-complete{
  color: rgba(18,19,26,.88);
}

.setupMock__item.is-active{
  border-color: rgba(59,130,246,.18);
  background: linear-gradient(135deg, rgba(239,246,255,.94), rgba(241,245,249,.94));
}

.setupMock__icon{
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(226,232,240,.92);
  color: #475569;
  font-size: 13px;
  font-weight: 900;
  flex: 0 0 28px;
}

.setupMock__item.is-complete .setupMock__icon{
  background: rgba(219,234,254,.94);
  color: #2563eb;
}

.setupMock__item.is-active .setupMock__icon{
  background: rgba(219,234,254,.94);
  color: #2563eb;
}

.setupMock__cta{
  margin-top: 20px;
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: var(--radius-control);
  background: linear-gradient(135deg, var(--btn1), var(--btn2));
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(101, 61, 226,.22);
  cursor: pointer;
}

.treatmentMock{
  padding: var(--space-card);
}

.treatmentMock__toolbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.treatmentMock__pill{
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,.86);
  color: rgba(18,19,26,.72);
  font-size: 12px;
  font-weight: 900;
}

.treatmentMock__pill--risk{
  color: #0f172a;
}

.treatmentMock__action{
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: var(--radius-control);
  background: linear-gradient(135deg, var(--btn1), var(--btn2));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.treatmentMock__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.treatmentMock__field{
  padding: 14px;
  border-radius: var(--radius-control);
  background: rgba(255,255,255,.84);
  border: 1px solid var(--border-soft);
}

.treatmentMock__label{
  display: block;
  color: rgba(18,19,26,.50);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.treatmentMock__value{
  display: block;
  margin-top: 8px;
  color: rgba(18,19,26,.84);
  font-size: 15px;
  font-weight: 800;
}

.treatmentMock__timeline{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, rgba(239,246,255,.88), rgba(241,245,249,.92));
}

.treatmentMock__line{
  flex: 1 1 auto;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(59,130,246,.32), rgba(148,163,184,.28));
}

.treatmentMock__step{
  min-width: 82px;
  text-align: center;
  color: rgba(18,19,26,.56);
  font-size: 12px;
  font-weight: 900;
}

.treatmentMock__step.is-complete,
.treatmentMock__step.is-active{
  color: #0f172a;
}

.workspaceFeatures{
  display: grid;
  gap: 28px;
  margin-top: 28px;
}

.workspaceFeature{
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
  padding: var(--space-card);
}

.workspaceFeature--plain{
  background: transparent;
  border: 0;
  box-shadow: none;
}

.workspaceFeature--reverse{
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}

.workspaceFeature__content h2{
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.workspaceFeature__body{
  margin: 16px 0 0;
  max-width: 40ch;
  color: rgba(18,19,26,.72);
  font-size: 18px;
  line-height: 1.75;
}

.workspaceFeature__micro{
  margin: 10px 0 0;
  color: rgba(18,19,26,.52);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.workspaceFeature__avatar{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(37,99,235,.16), rgba(148,163,184,.16));
  flex: 0 0 48px;
}

.workspaceFeature__avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.workspaceFeature__actions{
  margin-top: 20px;
}

.workspaceFeature__visual{
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.workspaceMock{
  width: min(100%, 560px);
  padding: var(--space-card);
}

.workspaceMock__topbar{
  display: grid;
  gap: 14px;
}

.workspaceMock__search{
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: var(--radius-control);
  border: 1px solid var(--border-soft);
  background: rgba(248,250,252,.94);
  color: rgba(18,19,26,.50);
  font-size: 14px;
  font-weight: 700;
}

.workspaceMock__filters{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.workspaceMock__filter{
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(226,232,240,.84);
  color: rgba(18,19,26,.64);
  font-size: 12px;
  font-weight: 900;
}

.workspaceMock__filter.is-active{
  background: rgba(37,99,235,.10);
  color: #2563eb;
}

.workspaceMock__table{
  margin-top: 18px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,.92);
}

.workspaceMock__head,
.workspaceMock__row{
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(100px, .9fr) minmax(90px, .8fr) minmax(90px, .8fr);
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
}

.workspaceMock__head{
  background: rgba(248,250,252,.92);
  color: rgba(18,19,26,.52);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.workspaceMock__row{
  border-top: 1px solid rgba(148,163,184,.10);
  color: rgba(18,19,26,.76);
  font-size: 14px;
  font-weight: 700;
}

.workspaceMock__status{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.workspaceMock__status--open{
  background: rgba(59,130,246,.10);
  color: #2563eb;
}

.workspaceMock__status--review{
  background: rgba(226,232,240,.9);
  color: #334155;
}

.workspaceMock__status--closed{
  background: rgba(226,232,240,.90);
  color: #475569;
}

.treatmentMock--workspace{
  box-shadow: none;
}

.scaleSection{
  margin-top: 28px;
  padding: 40px;
}

.scaleSection__layout{
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
  gap: 32px;
  align-items: center;
}

.scaleSection__content h2{
  margin: 0;
  max-width: 18ch;
  font-size: clamp(34px, 4.5vw, 48px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.scaleSection__body{
  margin: 16px 0 0;
  max-width: 58ch;
  color: rgba(18,19,26,.72);
  font-size: 18px;
  line-height: 1.78;
}

.scaleSection__micro{
  margin: 10px 0 0;
  color: rgba(18,19,26,.52);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.scaleSection__quote{
  margin: 22px 0 0;
  padding: var(--space-card);
  max-width: 58ch;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.scaleSection__quote blockquote{
  margin: 0;
  color: rgba(18,19,26,.86);
  font-size: 17px;
  line-height: 1.75;
}

.scaleSection__quote figcaption{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.scaleSection__quote strong{
  display: block;
  font-size: 15px;
}

.scaleSection__quote small{
  display: block;
  margin-top: 4px;
  color: rgba(18,19,26,.60);
  font-size: 13px;
}

.scaleSection__avatar{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(37,99,235,.16), rgba(148,163,184,.16));
  flex: 0 0 48px;
}

.scaleSection__avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scaleSection__cta{
  display: inline-flex;
  margin-top: 22px;
}

.scaleSection__grid{
  display: grid;
  gap: 14px;
  margin-top: 24px;
  max-width: 860px;
}

.scaleGroup{
  padding: 18px;
  border-radius: var(--radius-card);
  background: transparent;
  border: 0;
}

.scaleGroup h3{
  margin: 0;
  color: rgba(18,19,26,.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.scaleGroup__items{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.scaleFeature{
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: rgba(18,19,26,.80);
  font-size: 14px;
  font-weight: 700;
  box-shadow: none;
}

.scaleFeature--check::before{
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(59,130,246,.10);
  color: #2563eb;
  font-size: 12px;
  font-weight: 900;
  flex: 0 0 22px;
}

.scaleSection__visual{
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scaleMock{
  width: min(100%, 620px);
  min-height: 460px;
  display: grid;
  grid-template-columns: 122px 1fr;
  overflow: hidden;
}

.scaleMock__sidebar{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 14px;
  background: linear-gradient(180deg, rgba(248,250,252,.96), rgba(241,245,249,.94));
  border-right: 1px solid var(--border-soft);
}

.scaleMock__brand{
  margin-bottom: 6px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.scaleMock__nav{
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border-radius: var(--radius-control);
  color: rgba(18,19,26,.66);
  font-size: 13px;
  font-weight: 800;
}

.scaleMock__navIcon{
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: .9;
  flex: 0 0 18px;
}

.scaleMock__nav.is-active{
  background: linear-gradient(135deg, rgba(59,130,246,.10), rgba(226,232,240,.9));
  color: #0f172a;
}

.scaleMock__nav.is-active .scaleMock__navIcon{
  opacity: 1;
}

.scaleMock__main{
  padding: 18px;
}

.scaleMock__toolbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.scaleMock__filters{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.scaleMock__filter{
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(226,232,240,.84);
  color: rgba(18,19,26,.64);
  font-size: 12px;
  font-weight: 900;
}

.scaleMock__filter.is-active{
  background: rgba(37,99,235,.10);
  color: #2563eb;
}

.scaleMock__summary{
  color: rgba(18,19,26,.56);
  font-size: 13px;
  font-weight: 800;
}

.scaleMock__list{
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.scaleMock__row{
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(100px, .9fr) minmax(90px, .8fr);
  gap: 12px;
  align-items: center;
  min-height: 66px;
  padding: 0 16px;
  border-radius: var(--radius-control);
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,.88);
}

.scaleMock__item{
  color: rgba(18,19,26,.82);
  font-size: 14px;
  font-weight: 800;
}

.scaleMock__owner{
  color: rgba(18,19,26,.62);
  font-size: 13px;
  font-weight: 700;
}

.scaleMock__status{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.scaleMock__status--open{
  background: rgba(59,130,246,.10);
  color: #2563eb;
}

.scaleMock__status--review{
  background: rgba(226,232,240,.9);
  color: #334155;
}

.scaleMock__status--closed{
  background: rgba(226,232,240,.90);
  color: #475569;
}

/* Pricing */
.pricingHero{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap: 14px;
}
.pricingHero__eyebrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 45px rgba(17,14,35,.05);
  color: rgba(18,19,26,.64);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pricingHero h2{
  margin: 0;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1;
  letter-spacing: -.045em;
}
.pricingHero__lead{
  max-width: 62ch;
  margin: 0;
}

.pricingToolbar{
  position: relative;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap: wrap;
  gap: clamp(18px, 4vw, 56px);
  margin-top: 24px;
}
.pricingTeamSize{
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: #12131a;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 500;
  letter-spacing: -.02em;
}
.pricingTeamSize__label{
  font-weight: 500;
}
.pricingTeamSize__value{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  min-width: 76px;
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: #f1f3f8;
  color: #12131a;
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 500;
  letter-spacing: .04em;
  text-align: center;
}
.pricingTeamSize__value:focus{
  outline: 2px solid rgba(109,94,252,.28);
  outline-offset: 2px;
}
.pricingTeamSize__value::-webkit-outer-spin-button,
.pricingTeamSize__value::-webkit-inner-spin-button{
  margin: 0;
}
.pricingTeamSize__suffix{
  font-weight: 500;
}
.pricingTeamSize__notice{
  position: absolute;
  top: calc(100% + 8px);
  left: clamp(0px, 5vw, 52px);
  width: min(100%, 520px);
  margin: 0;
  color: #7c4a00;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: left;
  pointer-events: none;
  z-index: 3;
}
.pricingTrustLine{
  margin: 18px auto 0;
  max-width: 66ch;
  text-align: center;
  color: rgba(18,19,26,.58);
  font-size: 15px;
  line-height: 1.65;
}
.billingToggle{
  display:inline-flex;
  align-items:center;
  flex-wrap:wrap;
  gap: 8px;
}
.billingToggle__title{
  color: #12131a;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 500;
  letter-spacing: -.02em;
}
.billingToggle__option{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(18,19,26,.92);
  font: inherit;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 500;
  cursor: pointer;
}
.billingToggle__radio{
  position: relative;
  width: 22px;
  height: 22px;
  border: 2px solid #653de2;
  border-radius: 999px;
  background: #fff;
}
.billingToggle__radio::after{
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: #653de2;
  opacity: 0;
  transition: opacity .16s ease;
}
.billingToggle__option--active .billingToggle__radio::after{
  opacity: 1;
}
.billingToggle__option:focus-visible{
  outline: none;
  border-radius: 999px;
  box-shadow: var(--focus-ring);
}
.billingToggle__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 22px;
  padding: 3px 7px;
  border-radius: 4px;
  background: rgba(237,233,254,.9);
  color: #653de2;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.pricingShell{
  padding: 34px 0 0;
}

.pricingDeck{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(18,19,26,.18);
  border-radius: 22px;
  background: #fff;
}
.pricingCard{
  position:relative;
  display:flex;
  flex-direction:column;
  min-height: 100%;
  padding: 62px clamp(18px, 1.7vw, 28px) 32px;
  border: 0;
  border-right: 1px solid rgba(18,19,26,.18);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  transition: background var(--dur-hover) var(--ease-hover);
}
.pricingCard:last-child{
  border-right: 0;
}
.pricingCard--featured{
  transform: none;
  border-color: rgba(18,19,26,.9);
  box-shadow:
    inset 1px 0 0 rgba(18,19,26,.88),
    inset -1px 0 0 rgba(18,19,26,.88);
}
.pricingCard__flag{
  position:absolute;
  top: 0;
  left: 0;
  right: 0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 36px;
  padding: 6px 12px;
  border-radius: 0;
  background: #12131a;
  color:#fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  box-shadow: none;
}
.pricingCard__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 10px;
}
.pricingCard__meta{
  display:flex;
  align-items:center;
  gap: 8px;
  color: rgba(18,19,26,.58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pricingCard__icon{
  width: 28px;
  height: 28px;
  display:grid;
  place-items:center;
  align-self: start;
  margin-top: -8px;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: rgba(18,19,26,.78);
  font-size: 16px;
}
.pricingCard__iconImage{
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}
.pricingCard h3{
  margin: 18px 0 0;
  text-align: center;
  font-size: clamp(21px, 1.9vw, 28px);
  line-height: 1.1;
  letter-spacing: -.03em;
}
.pricingCard__desc{
  margin: 12px auto 0;
  max-width: 24ch;
  color: rgba(18,19,26,.86);
  text-align: center;
  font-size: 17px;
  line-height: 1.45;
  min-height: 76px;
}
.pricingCard__micro{
  margin: 10px 0 0;
  color: rgba(18,19,26,.56);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  min-height: 40px;
}
.pricingCard__micro--empty{
  visibility: hidden;
}
.pricingCard__price{
  margin-top: 18px;
  display:grid;
  gap: 8px;
  min-height: 82px;
  align-content: center;
  justify-items: center;
}
.pricingCard__amount{
  max-width: 100%;
  font-size: clamp(28px, 2.25vw, 38px);
  line-height: .95;
  font-weight: 950;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.pricingCard__period{
  min-height: 28px;
  color: rgba(18,19,26,.78);
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}
.pricingCard__note{
  margin-top: 8px;
  color: rgba(18,19,26,.66);
  font-size: 14px;
  line-height: 1.5;
  min-height: 84px;
}
.pricingCard__actions{
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin-top: 12px;
  min-height: 122px;
  justify-content: flex-start;
  align-items: center;
}
.pricingCard__actions .btn{
  width: min(100%, 198px);
  min-height: 44px;
  border: 2px solid #12131a;
  border-radius: 999px;
  background: #fff;
  color: #12131a;
  font-size: 14px;
  font-weight: 500;
  box-shadow: none;
  line-height: 1;
  padding-top: 16px;
  padding-bottom: 12px;
}
.pricingCard--featured .pricingCard__actions .btn:first-child{
  border-color: #653de2;
  background: #653de2;
  color: #fff;
}
.pricingCard__actions .btn:hover{
  background: #f3f4f6;
  box-shadow: none;
  transform: none;
  text-decoration: none;
}
.pricingCard--featured .pricingCard__actions .btn:first-child:hover{
  border-color: rgba(101, 61, 226,.28);
  background: #24145E;
  color: #fff;
}
.pricingCard__sectionTitle{
  margin: 0 calc(clamp(18px, 1.7vw, 28px) * -1) 0;
  padding: 22px clamp(18px, 1.7vw, 28px) 0;
  border-top: 1px solid rgba(18,19,26,.18);
  min-height: 17px;
  color: rgba(18,19,26,.92);
  font-size: 15px;
  font-weight: 900;
}
.pricingCard__list{
  margin: 28px 0 0;
  padding: 0 6px 2px 0;
  list-style: none;
  display:flex;
  flex-direction:column;
  gap: 26px;
  max-height: 560px;
  overflow-y: auto;
  overscroll-behavior-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.pricingCard__list::-webkit-scrollbar{
  width: 0;
  height: 0;
}
.pricingCard__list::-webkit-scrollbar-track{
  background: transparent;
}
.pricingCard__list::-webkit-scrollbar-thumb{
  background: transparent;
}
.pricingCard__list:hover::-webkit-scrollbar-thumb{
  background: transparent;
}
.pricingCard__list li{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  color: rgba(18,19,26,.86);
  font-size: 14px;
  line-height: 1.45;
}
.pricingCard__list li::before{
  content: "";
  display:inline-block;
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  margin-top: 7px;
  border-right: 2px solid #12131a;
  border-bottom: 2px solid #12131a;
  transform: rotate(-45deg);
}
.pricingCard__list .pricingCard__listItem--plain::before{
  display: none;
}
.pricingCard__listItem--plain{
  padding-left: 28px;
}
.pricingCard__listItem--dropdown{
  gap: 0;
}
.pricingCard__list .pricingCard__listItem--dropdown::before{
  display: none;
}
.pricingCard__featureDetails{
  width: 100%;
  padding-bottom: 0;
}
.pricingCard__featureDetails summary{
  position: relative;
  list-style: none;
  cursor: pointer;
  padding-left: 28px;
  padding-right: 0;
  color: rgba(18,19,26,.9);
  font-weight: 500;
  line-height: 1.35;
}
.pricingCard__featureDetails summary::-webkit-details-marker{
  display: none;
}
.pricingCard__featureDetails summary::after{
  content: "";
  position: absolute;
  top: .42em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #12131a;
  border-bottom: 2px solid #12131a;
  transform: rotate(-45deg);
  transition: transform var(--dur-accordion) var(--ease-accordion);
}
.pricingCard__featureDetails[open] summary::after{
  transform: translateY(-1px) rotate(45deg);
}
.pricingCard__featureDetails summary:focus-visible{
  outline: none;
  color: #653de2;
}
.pricingCard__featureDetails p{
  margin: 9px 0 0 28px;
  color: rgba(18,19,26,.66);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}
.pricingCard__featurePoints{
  margin: 10px 0 0 28px;
  padding: 0 0 0 16px;
  list-style: disc;
  display: grid;
  gap: 7px;
  color: rgba(18,19,26,.68);
}
.pricingCard__featurePoints li{
  display: list-item;
  padding-left: 0;
  font-size: 13px;
  line-height: 1.42;
}
.pricingCard__featurePoints li::before{
  display: none;
}

/* FAQ */
.faqSection{
  padding: 40px;
  display: grid;
  grid-template-columns: minmax(280px, .86fr) minmax(0, 1.14fr);
  gap: 34px;
  align-items: start;
}
.faqSection__intro{
  max-width: 420px;
}
.faqSection__introCard{
  padding: var(--space-card);
  background: transparent;
  border: 0;
  box-shadow: none;
}
.faqSection__head{
  margin-bottom: 0;
}
.faqSection__head h2{
  margin: 0;
  max-width: 18ch;
  font-size: clamp(34px, 4.5vw, 48px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.faq{
  display:flex;
  flex-direction:column;
  gap: 0;
  border-top: 1px solid rgba(18,19,26,.12);
}
.faqItem{
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(18,19,26,.12);
  background: transparent;
  box-shadow: none;
  transition:
    border-color var(--dur-hover) var(--ease-hover),
    background-color var(--dur-hover) var(--ease-hover);
}
.faqItem--featured{
  border-color: rgba(18,19,26,.12);
  background: transparent;
  box-shadow: none;
}
.faqItem:hover,
.faqItem:focus-within{
  border-color: rgba(18,19,26,.16);
  background: rgba(248,250,252,.42);
}
.faqItem[open]{
  background: rgba(248,250,252,.54);
}
.faq summary{
  list-style:none;
  cursor:pointer;
  font-weight: 900;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 18px;
  padding: 28px 16px;
  transition:
    color var(--dur-hover) var(--ease-hover),
    background-color var(--dur-hover) var(--ease-hover);
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary:focus-visible{
  outline: none;
  border-radius: 8px;
  box-shadow: var(--focus-ring);
}
.faqItem__titleWrap{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap: 0;
  min-width: 0;
}
.faqItem__badge{
  display:none;
}
.faqItem__title{
  display:block;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -.025em;
}
.faqItem:not(.faqItem--featured) .faqItem__title{
  font-size: 18px;
}
.faqItem__icon{
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  position: relative;
  margin-top: 2px;
  border: 0;
  background: transparent;
  opacity: .86;
  transition:
    transform var(--dur-accordion) var(--ease-accordion),
    opacity var(--dur-accordion) var(--ease-accordion);
}
.faqItem__iconLine{
  display:none;
}
.faqItem__icon::before,
.faqItem__icon::after{
  content: "";
  position: absolute;
  top: 50%;
  width: 11px;
  height: 2px;
  border-radius: 999px;
  background: rgba(18,19,26,.88);
  transition: transform var(--dur-accordion) var(--ease-accordion);
}
.faqItem:hover .faqItem__icon,
.faqItem:focus-within .faqItem__icon,
.faqItem[open] .faqItem__icon{
  opacity: 1;
}
.faqItem__icon::before{
  left: 5px;
  transform: translateY(-50%) rotate(45deg);
}
.faqItem__icon::after{
  right: 5px;
  transform: translateY(-50%) rotate(-45deg);
}
.faqItem[open] .faqItem__icon::before{
  transform: translateY(-50%) rotate(-45deg);
}
.faqItem[open] .faqItem__icon::after{
  transform: translateY(-50%) rotate(45deg);
}
.faqItem__content{
  display: grid;
  grid-template-rows: 0fr;
  opacity: .01;
  transition:
    grid-template-rows var(--dur-accordion) var(--ease-accordion),
    opacity var(--dur-accordion) var(--ease-accordion);
}
.faqItem[open] .faqItem__content{
  grid-template-rows: 1fr;
  opacity: 1;
}
.faqItem__contentInner{
  overflow: hidden;
  padding: 0 16px 0;
  transition: padding-bottom var(--dur-accordion) var(--ease-accordion);
}
.faqItem[open] .faqItem__contentInner{
  padding-bottom: 28px;
}
.faqItem__contentInner > *{
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity var(--dur-accordion) var(--ease-accordion),
    transform var(--dur-accordion) var(--ease-accordion);
}
.faqItem[open] .faqItem__contentInner > *{
  opacity: 1;
  transform: translateY(0);
}
.faqItem__summary{
  margin: 0;
  color: rgba(18,19,26,.92);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}
.faqItem__contentInner p + p{
  margin-top: 22px;
}
.faqItem__contentInner p:last-child{
  margin-bottom: 0;
}
.faqItem__contentInner p{
  color: rgba(18,19,26,.72);
  line-height: 1.72;
  font-size: 15px;
  max-width: 72ch;
}

/* Footer */
footer{
  background: var(--bg);
  color: rgba(18,19,26,.90);
  padding: 24px 0 26px;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.6fr .8fr .8fr;
  gap: 28px;
  align-items: start;
}
.footer__brandBlock{
  max-width: 32ch;
}
.footer__appStoreBadges{
  width: min(240px, 100%);
  height: auto;
  margin: 14px 0 0 92px;
}
.footer__muted{
  margin-top: 12px;
  color: rgba(18,19,26,.82);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.footer__microTrust{
  margin: 14px 0 0;
  color: rgba(18,19,26,.58);
  font-size: 13px;
  line-height: 1.65;
}
.footer__col h4{
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing:.08em;
  text-transform: uppercase;
  color: rgba(18,19,26,.72);
}
.footer__col a{
  display:block;
  color: rgba(18,19,26,.78);
  padding: 7px 0;
  text-decoration:none;
  transition:
    color var(--dur-hover) var(--ease-hover),
    transform var(--dur-hover) var(--ease-hover),
    text-decoration-color var(--dur-hover) var(--ease-hover);
}
.footer__col a:hover{
  color: #0f172a;
  text-decoration: underline;
  text-underline-offset: 3px;
  transform: translateX(var(--offset-link-nudge));
}
.footer__col a:focus-visible{
  outline: none;
  border-radius: 8px;
  box-shadow: var(--focus-ring);
}
.footer__bottom{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  border-top: 1px solid rgba(18,19,26,.10);
  padding-top: 16px;
  color: rgba(18,19,26,.56);
  font-size: 13px;
}
.footerBrand .brand__mark{
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  padding: 0;
  background: transparent;
  border-color: transparent;
  box-shadow:none;
  color: rgba(18,19,26,.92);
}
.footerBrand .brand__logo{
  filter: none;
}

/* Responsive */
@media (max-width: 980px){
  :root{
    --layout-gutter: 16px;
  }
  .container{
    width:min(var(--layout-max), calc(100% - (var(--layout-gutter) * 2)));
  }
  .section.sectionWrapper{
    padding: 68px 0;
  }
  .sectionWrapper + .sectionWrapper{
    margin-top: 0;
  }
  .topbar__inner{
    gap: 16px;
  }
  .brand{
    margin-left: 0;
  }
  .nav{
    gap: 16px;
  }
  .nav__right{
    margin-right: 0;
  }
  .hero{
    padding: 42px 0 56px;
  }
  .sectionWrapper--hero::after{
    height: 78px;
    clip-path: polygon(0 76%, 100% 30%, 100% 100%, 0 100%);
  }
  .hero__grid{
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero__copy{
    width: 100%;
    justify-self: stretch;
  }
  .hero__title{
    max-width: 12ch;
  }
  .hero__lead{
    max-width: 40ch;
  }
  .launchImportExport{
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 44px 28px 40px;
    gap: 26px;
  }
  .launchImportExport__copy{
    grid-column: 1;
    grid-row: auto;
    justify-items: center;
    text-align: center;
  }
  .launchImportExport__copy h3{
    font-size: 50px;
  }
  .launchImportExport__copy p{
    max-width: 56ch;
  }
  .launchImportExport__stage{
    grid-column: 1;
    grid-row: auto;
    width: min(100%, 760px);
  }
  .launchImportExport__rail{
    width: 100%;
    min-height: 140px;
    padding: 22px 24px 30px;
    gap: 12px;
  }
  .launchImportExport__tile{
    width: 88px;
    height: 88px;
    border-radius: 24px;
  }
  .launchImportExport__tile img{
    width: 54px;
    height: 54px;
  }
  .launchImportExport__tile--guardzy{
    width: 108px;
    height: 108px;
  }
  .launchImportExport__tile--guardzy img{
    width: 100%;
    height: 100%;
  }
  .launchImportExport__cta{
    grid-column: 1;
    grid-row: auto;
    margin: 0 auto;
  }
  .hero__floatArt{
    display: none;
  }
  .hero__floatArtRight{
    display: none;
  }
  .hero__floatArtRightTop{
    display: none;
  }
  .trustBlock{
    margin-top: 36px;
  }
  .featureSpotlight{
    padding: 24px 26px 36px;
    border-radius: var(--radius-shell);
  }
  .featureSpotlight__shell{
    grid-template-columns: 1fr;
  }
  .featureSpotlight__visual{
    min-height: 460px;
  }
  .alternatingFeature,
  .alternatingFeature--reverse{
    grid-template-columns: 1fr;
    padding: 26px;
  }
  .workspaceFeature,
  .workspaceFeature--reverse{
    grid-template-columns: 1fr;
    padding: 26px;
  }
  .scaleSection{
    padding: 30px 26px;
  }
  .scaleSection__layout{
    grid-template-columns: 1fr;
  }
  .alternatingFeature__visual{
    min-height: 360px;
  }
  .workspaceFeature__visual{
    min-height: 360px;
  }
  .scaleSection__visual{
    min-height: 420px;
  }
  .featureSpotlight__content{
    padding: 0;
  }
  .faqSection{
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 28px;
  }
  .faqSection__intro{
    max-width: none;
  }
  .faqSection__trust{
    max-width: none;
  }
  .panel{ position: static; }
  .section__head--row{ flex-direction:column; align-items:flex-start; }
  .pricingShell{ padding: 28px; }
  .pricingDeck{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 24px;
  }
  .pricingCard:nth-child(2n){
    border-right: 0;
  }
  .pricingCard:nth-child(n + 3){
    border-top: 1px solid rgba(18,19,26,.18);
  }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px){
  .launchSection__visualImage{
    transform: translateY(0);
  }
  .launchSection__panel{
    margin-top: 24px;
  }
  .launchStoryFlow__quoteCard{
    flex: 0 0 100%;
  }
}

@media (max-width: 760px){
  html{
    scroll-padding-top: calc(var(--topbar-h) + 10px);
  }
  .section.sectionWrapper{
    padding: 58px 0;
  }
  .sectionWrapper + .sectionWrapper{
    margin-top: 0;
  }
  .sectionWrapper::after{
    display: none;
  }
  .navToggle{ display:inline-flex; align-items:center; justify-content:center; }
  .nav{
    display:none;
    position:absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    flex-direction:column;
    gap: 8px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(18,19,26,.10);
    background: rgba(255,255,255,.92);
    box-shadow: 0 18px 60px rgba(17,14,35,.12);
  }
  .nav.isOpen{ display:flex; }
  .brand{
    margin-left: 0;
    gap: 6px;
  }
  .nav__right{
    margin-left: auto;
    margin-right: 0;
    gap: 8px;
  }
  .topbar__inner{
    flex-wrap: nowrap;
    height: var(--topbar-h);
    min-height: var(--topbar-h);
    padding: 0;
  }
  .topbar .brand__mark{
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }
  .footerBrand .brand__mark{
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }
  .brand__name{
    font-size: 24px;
  }
  .btn{
    font-size: 14px;
  }
  .hero__title{
    max-width: none;
    font-size: clamp(34px, 10vw, 48px);
  }
  .hero__lead{
    font-size: 17px;
    max-width: none;
  }
  .featureSpotlight{
    padding: 18px 18px 28px;
    border-radius: var(--radius-shell);
  }
  .featureSpotlight__head{
    margin-bottom: 18px;
  }
  .featureSpotlight__head h2{
    font-size: clamp(30px, 10vw, 42px);
  }
  .featureSpotlight__lead{
    font-size: 16px;
    line-height: 1.65;
  }
  .featureSpotlight__summary{
    padding: 28px 0;
  }
  .featureSpotlight__summary::before{
    left: 16px;
    top: -16px;
    width: 126px;
    height: 64px;
  }
  .featureSpotlight__summary::after{
    left: 104px;
    top: 18px;
    width: 12px;
    height: 12px;
    box-shadow:
      18px 8px 0 0 rgba(91,140,255,.42),
      38px -4px 0 0 rgba(255,177,0,.92);
  }
  .featureSpotlight__summaryInner{
    width: min(100%, calc(100% - 32px));
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .featureSpotlightGraphic{
    min-height: 0;
    border-radius: 22px;
  }
  .featureSpotlightGraphic__cluster{
    width: 220px;
    height: 150px;
  }
  .featureSpotlightGraphic__shape--green{
    width: 98px;
    height: 118px;
  }
  .featureSpotlightGraphic__shape--blue{
    left: 76px;
    width: 128px;
    height: 58px;
  }
  .featureSpotlightGraphic__shape--navy{
    left: 68px;
    width: 74px;
    height: 58px;
  }
  .featureSpotlightGraphic__shape--orange{
    width: 62px;
    height: 42px;
  }
  .featureSpotlightGraphic__person--top{
    left: 126px;
    top: 42px;
    width: 48px;
    height: 48px;
  }
  .featureSpotlightGraphic__person--left,
  .featureSpotlightGraphic__person--right{
    width: 74px;
    height: 74px;
  }
  .featureSpotlightGraphic__badge--chart{
    left: 34px;
    top: 84px;
  }
  .featureSpotlightGraphic__badge--check{
    right: 22px;
    top: 104px;
  }
  .featureSpotlight__summaryCopy{
    max-width: none;
    margin-left: 0;
    text-align: left;
  }
  .featureSpotlight__summaryCopy h3{
    font-size: clamp(24px, 7vw, 34px);
  }
  .featureSpotlight__summaryCopy p{
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.65;
  }
  .featureSpotlight__shell{
    gap: 20px;
  }
  .featureSpotlight__videoToggle{
    right: 12px;
    bottom: 12px;
    min-width: 78px;
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }
  .featureSpotlight__visual{
    order: -1;
    min-height: 380px;
    padding: var(--space-card-mobile);
  }
  .workflowCard{
    padding: var(--space-card-mobile);
  }
  .workflowCard__header{
    flex-direction: column;
  }
  .workflowCard__header h3{
    max-width: none;
    font-size: 22px;
  }
  .workflowAction{
    width: 100%;
  }
  .workflowMeta{
    grid-template-columns: 1fr;
  }
  .workflowTimeline{
    gap: 6px;
    padding: 14px 12px;
  }
  .workflowTimeline__step{
    min-width: 56px;
    font-size: 11px;
  }
  .featureSpotlight__content h3{
    font-size: 30px;
  }
  .featureSpotlight__body,
  .featureSpotlight__testimonial blockquote{
    font-size: 16px;
  }
  .featureSpotlight__testimonial{
    padding: var(--space-card-mobile);
  }
  .alternatingFeatures{
    gap: 20px;
  }
  .workspaceFeatures{
    gap: 20px;
    margin-top: 20px;
  }
  .scaleSection{
    margin-top: 20px;
    padding: 22px 18px;
    border-radius: var(--radius-shell);
  }
  .scaleSection__visual{
    min-height: 320px;
    order: -1;
  }
  .scaleSection__content h2{
    font-size: 32px;
    max-width: none;
  }
  .scaleSection__body,
  .scaleSection__quote blockquote{
    font-size: 16px;
  }
  .scaleSection__quote{
    padding: var(--space-card-mobile);
  }
  .scaleGroup{
    padding: 16px;
  }
  .scaleGroup__items{
    grid-template-columns: 1fr;
  }
  .scaleMock{
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: var(--radius-card);
  }
  .scaleMock__sidebar{
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid rgba(148,163,184,.12);
  }
  .scaleMock__brand{
    width: 100%;
    margin-bottom: 0;
  }
  .scaleMock__row{
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding: 14px;
  }
  .alternatingFeature,
  .alternatingFeature--reverse{
    padding: var(--space-card-mobile);
    gap: 20px;
  }
  .workspaceFeature,
  .workspaceFeature--reverse{
    padding: var(--space-card-mobile);
    gap: 20px;
  }
  .alternatingFeature__visual{
    min-height: 300px;
    order: -1;
  }
  .workspaceFeature__visual{
    min-height: 300px;
    order: -1;
  }
  .alternatingFeature__content h2{
    font-size: 30px;
  }
  .workspaceFeature__content h2{
    font-size: 30px;
  }
  .pricingShell{
    padding: 22px 18px;
  }
  .pricingCard__list{
    max-height: 460px;
  }
  .footer__grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .footer__appStoreBadges{
    margin-left: 0;
  }
  .footer__col a{
    padding: 9px 0;
  }
  .footer__bottom{
    flex-direction: column;
    gap: 8px;
  }
  .alternatingFeature__body,
  .alternatingFeature__quote blockquote{
    font-size: 16px;
  }
  .workspaceFeature__body,
  .workspaceFeature__quote blockquote{
    font-size: 16px;
  }
  .alternatingFeature__quote{
    padding: var(--space-card-mobile);
  }
  .workspaceFeature__quote{
    padding: var(--space-card-mobile);
  }
  .workspaceMock{
    padding: var(--space-card-mobile);
  }
  .workspaceMock__head{
    display: none;
  }
  .workspaceMock__row{
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .setupMock,
  .treatmentMock{
    border-radius: var(--radius-card);
  }
  .setupMock{
    padding: var(--space-card-mobile);
  }
  .setupMock__header{
    flex-direction: column;
  }
  .setupMock__header h3{
    max-width: none;
    font-size: 24px;
  }
  .treatmentMock{
    padding: var(--space-card-mobile);
  }
  .treatmentMock__grid{
    grid-template-columns: 1fr;
  }
  .treatmentMock__timeline{
    gap: 6px;
    padding: 14px 12px;
  }
  .treatmentMock__step{
    min-width: 56px;
    font-size: 11px;
  }
  .hero__actions{
    flex-direction:column;
    align-items:stretch;
  }
  .btn--hero,
  .btn--heroAlt{
    min-width: 0;
    width: 100%;
  }
  .heroShowcase{
    padding: 14px 14px 18px;
  }
  .heroShowcase__toolbar{
    flex-wrap:wrap;
  }
  .heroShowcase__canvas{
    min-height: 260px;
  }
  .heroSignupCard{
    padding: 4px;
    gap: 14px;
  }
  .heroSignupCard__field{
    min-height: 40px;
    padding: 10px 18px;
    font-size: 15px;
  }
  .heroSignupCard__primary,
  .heroSignupCard__oauth{
    min-height: 78px;
    padding: 0 24px;
    font-size: 20px;
  }
  .heroSignupCard__primary{
    min-height: 40px;
    padding: 10px 18px;
    font-size: 15px;
  }
  .heroSignupCard__oauth{
    min-height: 40px;
    padding: 10px 18px;
    font-size: 15px;
  }
  .heroSignupCard__oauthRow{
    grid-template-columns: 1fr;
  }
  .heroSignupCard__divider{
    gap: 12px;
    font-size: 15px;
  }
  .heroSignupCard__hint{
    white-space: normal;
  }
  .heroMiniCards{
    grid-template-columns: 1fr;
  }
  .workspaceMenu{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 8px;
  }
  .workspaceMenu__item{
    min-height: 72px;
    padding: 2px 4px;
  }
  .workspaceMenu__item img{
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
  .workspaceMenu__item span{
    font-size: 12px;
  }
  .heroIconCarousel{
    margin-top: 20px;
  }
  .heroMiniCards--band{
    grid-template-columns: 1fr;
  }
  .heroMiniCard{
    height: auto;
    min-height: 200px;
  }
  .heroShowcase__window--back{
    right: 18px;
    width: 110px;
    height: 100px;
  }
  .heroShowcase__window--front{
    width: calc(100% - 20px);
  }
  .heroShowcase__windowBody{
    grid-template-columns: 60px 1fr;
    gap: 12px;
    padding: 14px;
  }
  .heroShowcase__callout{
    width: calc(100% - 24px);
    white-space: normal;
    font-size: 13px;
  }
  .trialModal{
    padding: 10px;
  }
  .demoPopup{
    place-items: center;
    padding: 0;
  }
.demoPopup__dialog{
    width: 100%;
    min-height: 0;
    margin-top: 0;
    border-radius: 0;
  }
  .demoPopup__close{
    top: 12px;
    right: 12px;
  }
  .demoPopup__inner{
    width: 100%;
    min-height: 0;
    padding: 58px 18px 22px;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .demoPopup__content{
    text-align: center;
  }
  .demoPopup__copy h2{
    font-size: clamp(27px, 8.5vw, 36px);
  }
  .demoPopup__copy p{
    font-size: 16px;
  }
  .demoPopupForm{
    grid-template-columns: 1fr;
    max-width: none;
  }
  .demoPopupForm input,
  .demoPopupForm button{
    min-height: 50px;
  }
  .demoPopup__visual{
    border-radius: 0;
    min-height: 0;
    aspect-ratio: 1507 / 1044;
  }
  .demoPopup__visual img{
    height: 100%;
  }
  .exitTrialPopup{
    padding: 28px 18px 14px;
  }
  .exitTrialPopup__dialog{
    width: min(100%, 520px);
    border-radius: 18px;
  }
  .exitTrialPopup__close{
    top: -12px;
    right: -6px;
    width: 40px;
    height: 40px;
    font-size: 30px;
  }
  .exitTrialPopup__inner{
    width: 100%;
    margin: 0;
    padding: 44px 18px 24px;
    justify-items: center;
  }
  .exitTrialPopup__content{
    justify-items: center;
    gap: 10px;
    text-align: center;
  }
  .exitTrialPopup__inner h2{
    max-width: 15ch;
    margin-bottom: 0;
    font-size: clamp(30px, 9.5vw, 38px);
  }
  .exitTrialPopup__content > p:not(.exitTrialPopup__footer){
    max-width: 31ch;
    font-size: 15px;
  }
  .exitTrialPopupForm{
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .exitTrialPopupForm input{
    min-height: 48px;
  }
  .exitTrialPopup__cta{
    min-height: 48px;
    font-size: 15px;
  }
  .exitTrialPopup__visual img{
    width: min(64vw, 198px);
  }
  .trialModal__dialog{
    width: min(100vw - 20px, 598px);
    max-height: calc(100vh - 20px);
  }
  .trialModal__content{
    padding: 54px 18px 34px;
  }
  .trialModal__subcopy{
    margin-bottom: 22px;
    font-size: 16px;
  }
  .trialSignupForm__row{
    grid-template-columns: 1fr;
  }
  .trialSignupForm__field,
  .trialSignupForm__submit{
    min-height: 46px;
    font-size: 16px;
  }
  .trialSignupForm__hint{
    margin: 12px 0 22px;
  }
  .trialModal__divider{
    margin: 0 0 20px;
    gap: 10px;
  }
  .trialOauthGrid{
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .trialOauthButton{
    min-height: 44px;
    font-size: 16px;
  }
  .trialModal__login{
    margin-top: 22px;
  }
  .trialVerify{
    padding: 78px 18px 34px;
  }
  .trialVerify__title{
    max-width: 13ch;
    font-size: clamp(34px, 10vw, 44px);
  }
  .trialVerify__lead{
    margin: 14px 0 30px;
    font-size: clamp(18px, 5.2vw, 22px);
  }
  .trialVerify__form{
    width: 100%;
    max-width: none;
    justify-self: stretch;
    gap: 22px;
  }
  .trialVerify__codeGrid{
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
  }
  .trialVerify__codeInput{
    aspect-ratio: 1 / 1.16;
    border-radius: 5px;
    font-size: clamp(22px, 7vw, 30px);
  }
  .trialVerify__submit{
    min-height: 58px;
    font-size: 20px;
  }
  .trialVerify__status{
    margin: 12px 0 24px;
  }
  .trialVerify__mailLinks{
    display: grid;
    gap: 14px;
    margin-bottom: 30px;
  }
  .trialVerify__mailLink{
    font-size: 18px;
  }
  .trialVerify__mailLink img{
    width: 26px;
    height: 26px;
  }
  .trialVerify__resend{
    font-size: 18px;
  }
  .signupCodePage{
    padding-top: 0;
  }
  .signupCodeShell{
    min-height: 100svh;
    padding: 24px 10px;
  }
  .signupCodeIconMatrix{
    inset: -60px -440px;
    grid-template-columns: repeat(8, 70px);
    grid-auto-rows: 70px;
    gap: 34px 42px;
    opacity: .28;
    transform: scale(1.05);
  }
  .signupCodeIconMatrix img{
    width: 46px;
    height: 46px;
  }
  .signupCodeCard{
    width: calc(100vw - 20px);
    max-height: calc(100svh - 48px);
  }
  .signupCodeVerify{
    padding: 44px 18px 34px;
  }
  .loginShell{
    height: 100svh;
    min-height: 100svh;
    padding: 12px 16px;
  }
  .loginPanel{
    max-height: calc(100svh - 24px);
    padding: 22px 26px;
  }
  .loginPanel__brand{
    font-size: 22px;
  }
  .loginPanel__title{
    margin-top: 24px;
  }
  .loginIllustration{
    display:none;
  }
  .trustBlock{
    margin-bottom: -16px;
    padding: calc(var(--space-card-mobile) + 26px) var(--space-card-mobile) 0;
  }
  .trustBlock__title{
    font-size: 24px;
    line-height: 1.24;
  }
  .trustBlock__copy{
    font-size: 16px;
  }
  .trustBlock__actions{
    flex-direction: column;
    align-items: stretch;
  }
  .trustBlock__primary,
  .trustBlock__secondary{
    width: 100%;
  }
  .launchSection{
    margin-top: -40px;
    padding: 0 0 58px;
  }
  .launchSection__shell{
    padding: 24px 0 0;
  }
  .launchSection__shell::before{
    left: 0;
    right: 0;
    top: -40px;
    height: clamp(2300px, 610vw, 2600px);
    clip-path: polygon(0 9%, 64% 0, 100% 5%, 100% 94%, 90% 98%, 64% 100%, 0 97%);
  }
  .launchSection__shell::after{
    top: -18px;
    left: 16px;
    width: 92px;
    height: 12px;
  }
  .launchSection__title{
    font-size: clamp(30px, 9vw, 44px);
    max-width: 12ch;
  }
  .launchSection__lead{
    max-width: 30ch;
    font-size: 16px;
    line-height: 1.6;
  }
  .launchSection__hero{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .launchSection__visual{
    min-height: 0;
    padding-top: 0;
  }
  .launchSection__visualImage{
    width: min(100%, 460px);
    transform: translateY(0);
  }
  .launchSection__panel{
    margin-top: 28px;
    display: block;
    min-height: 0;
    border-radius: 24px;
    background: #fff;
  }
  .launchSection__panelVisual{
    min-height: 0;
  }
  .launchSection__panelImage{
    aspect-ratio: 1.86 / 1;
    transform: none;
  }
  .launchSection__supportGrid{
    margin-top: 22px;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .launchImportExport{
    margin-top: 76px;
    padding: 30px 12px 28px;
    gap: 18px;
  }
  .launchImportExport::before{
    inset: -30px -16px -52px;
    clip-path: polygon(0 5%, 72% 0, 100% 4%, 100% 91%, 88% 96%, 0 100%);
  }
  .launchImportExport::after{
    top: -30px;
    right: -16px;
    width: 110px;
    height: 42px;
  }
  .launchImportExport__copy{
    gap: 12px;
  }
  .launchImportExport__copy h3{
    max-width: 10.4em;
    font-size: 30px;
    line-height: 1.08;
  }
  .launchImportExport__copy p{
    max-width: 34ch;
    font-size: 15px;
    line-height: 1.56;
  }
  .launchImportExport__stage{
    margin-top: 0;
    gap: 14px;
  }
  .launchImportExport__rail{
    width: min(100%, 318px);
    min-height: 0;
    padding: 14px;
    grid-auto-flow: dense;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    border-radius: 22px;
  }
  .launchImportExport__rail::after{
    display: none;
  }
  .launchImportExport__tile{
    width: 68px;
    height: 68px;
    border-radius: 18px;
  }
  .launchImportExport__tile::after{
    display: none;
  }
  .launchImportExport__tile img{
    width: 42px;
    height: 42px;
  }
  .launchImportExport__tile--guardzy{
    grid-column: 2;
    grid-row: 2;
    width: 82px;
    height: 82px;
    border-radius: 22px;
    transform: none;
  }
  .launchImportExport__tile--guardzy img{
    width: 100%;
    height: 100%;
  }
  .launchImportExport__apps{
    gap: 8px;
  }
  .launchImportExport__apps span{
    min-height: 30px;
    padding: 6px 9px;
    font-size: 12px;
    white-space: normal;
    text-align: center;
  }
  .launchImportExport__cta{
    width: min(100%, 246px);
    min-height: 52px;
    margin-top: 0;
    font-size: 17px;
  }
  .launchPurplePanel{
    margin: 24px calc(50% - 50vw) 0;
    clip-path: polygon(0 4%, 100% 0, 100% 97%, 0 100%);
  }
  .launchPurplePanel__inner{
    padding: 62px 18px 64px;
  }
  .launchPurplePanel__intro h3{
    font-size: clamp(28px, 8vw, 40px);
  }
  .launchPurplePanel__intro p{
    font-size: 16px;
    line-height: 1.6;
  }
  .launchPurplePanel__grid{
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .launchPurpleItem__number{
    width: 42px;
    height: 42px;
    margin: 18px 0 0 14px;
    border-radius: 14px;
    font-size: 22px;
  }
  .launchPurpleItem h4{
    font-size: clamp(24px, 7vw, 34px);
  }
  .launchPurpleItem p{
    max-width: none;
  }
  .launchStoryFlow{
    margin-top: 28px;
    padding: 0;
  }
  .launchStoryFlow__intro{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .launchStoryFlow__logoCluster{
    grid-template-columns: repeat(4, minmax(0, 64px));
    justify-content: start;
    gap: 14px;
  }
  .launchStoryFlow__logoTile{
    width: 64px;
    height: 64px;
  }
  .launchStoryFlow__logoTile img{
    width: 28px;
    height: 28px;
  }
  .launchCollectionStrip{
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 44px 20px 30px;
    clip-path: polygon(0 7%, 100% 0, 100% 100%, 0 100%);
  }
  .launchCollectionStrip__copy h3,
  .launchStoryFlow__introCopy h3,
  .launchStoryFlow__proofIntro h3{
    font-size: clamp(28px, 8vw, 40px);
  }
  .launchCollectionStrip__visual{
    min-height: 240px;
  }
  .launchCollectionStrip__grid{
    right: 10px;
    top: 24px;
    width: 132px;
    height: 108px;
    background-size: 18px 18px;
  }
  .launchCollectionStrip__panel--base{
    left: 8px;
    width: 88px;
  }
  .launchCollectionStrip__panel--front{
    right: 10px;
    top: 22px;
    width: 170px;
  }
  .launchCollectionStrip__node{
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }
  .launchCollectionStrip__node img{
    width: 24px;
    height: 24px;
  }
  .launchCollectionStrip__node--one{
    right: 124px;
    top: 84px;
  }
  .launchCollectionStrip__node--two{
    right: 72px;
    top: 122px;
  }
  .launchCollectionStrip__node--three{
    right: 8px;
    bottom: 24px;
  }
  .launchStoryFlow__proof{
    margin-top: 28px;
  }
  .launchStoryFlow__quoteShell{
    padding-bottom: 62px;
  }
  .launchStoryFlow__quoteViewport{
    width: min(100%, 1160px);
    margin-top: 0;
    margin-left: auto;
    padding-top: 0;
    padding-inline: 0;
    align-items: flex-start;
    scroll-snap-type: x mandatory;
  }
  .launchStoryFlow__quoteControls{
    justify-content: center;
    margin-bottom: 10px;
  }
  .launchStoryFlow__quoteNav{
    width: 52px;
    height: 52px;
  }
  .launchStoryFlow__quoteCard{
    display: block;
    flex: 0 0 100%;
    min-height: auto;
    --quote-photo-offset-x: 0px;
    padding: 28px 20px 24px;
    overflow: hidden;
  }
  .launchStoryFlow__quoteCard::before{
    inset: 0;
    border-radius: 16px;
  }
  .launchStoryFlow__quoteVisual{
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: min(78%, var(--quote-photo-mobile-width));
    height: 230px;
    margin: 0 auto 4px;
  }
  .launchStoryFlow__quoteShape--gold{
    left: 17%;
    top: 0;
    width: 84px;
    height: 170px;
  }
  .launchStoryFlow__quoteShape--violet{
    left: 42%;
    top: 20px;
    width: 130px;
    height: 130px;
  }
  .launchStoryFlow__quoteShape--emeraldArch{
    left: 16%;
    top: 18px;
    width: 112px;
    height: 166px;
  }
  .launchStoryFlow__quoteShape--amberDot{
    right: 14%;
    top: 42px;
    width: 70px;
    height: 70px;
  }
  .launchStoryFlow__quoteShape--bluePlate{
    left: 34%;
    bottom: 24px;
    width: 132px;
    height: 54px;
  }
  .launchStoryFlow__quoteShape--cyanRing{
    left: 16%;
    top: 34px;
    width: 124px;
    height: 124px;
    border-width: 18px;
  }
  .launchStoryFlow__quoteShape--indigoDiamond{
    right: 16%;
    top: 48px;
    width: 92px;
    height: 92px;
  }
  .launchStoryFlow__quoteShape--limeBars{
    left: 30%;
    bottom: 28px;
    width: 126px;
    height: 66px;
  }
  .launchStoryFlow__quotePortrait{
    width: 100%;
    height: 100%;
  }
  .launchStoryFlow__quoteCopy p{
    margin: 22px 0 0;
    padding-top: 0;
  }
  .launchStoryFlow__quoteCopy blockquote{
    max-width: none;
    font-size: clamp(24px, 7vw, 34px);
  }
  .launchStoryFlow__quoteCard--fiona .launchStoryFlow__quoteCopy blockquote,
  .launchStoryFlow__quoteCard--john .launchStoryFlow__quoteCopy blockquote,
  .launchStoryFlow__quoteCard--marcus .launchStoryFlow__quoteCopy blockquote{
    font-size: clamp(19px, 4.8vw, 24px);
    line-height: 1.2;
  }
  .launchSupportCard{
    grid-template-rows: minmax(210px, 240px) auto;
    border-radius: 24px;
  }
  .launchSupportCard__body{
    padding: 24px 20px 18px;
  }
  .launchSupportCard__body h3{
    font-size: clamp(24px, 7vw, 34px);
  }
  .launchSupportCard__body p{
    max-width: none;
    font-size: 16px;
    line-height: 1.6;
  }
  .launchSupportCard__image--light{
    width: min(48%, 210px);
  }
  .launchSupportCard__image--bestAction{
    transform: translateY(6px) rotate(-1deg);
  }
  .launchSupportCard__image--completeness{
    transform: translateY(-6px) rotate(1deg);
  }
  .launchSupportCard__image--dark{
    width: min(92%, 450px);
    transform: translateY(20px);
  }
  .launchSupportCard__media--riskPriorities{
    padding: 12px;
  }
  .launchSupportCard__image--riskPriorities{
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-position: left top;
    border-radius: 14px;
  }
  .launchSupportCard__media--icons{
    padding: 20px 16px;
  }
  .launchRegisterIcons{
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 10px;
  }
  .launchRegisterIcons span{
    min-height: 76px;
    border-radius: 16px;
  }
  .launchRegisterIcons img{
    width: 36px;
    height: 36px;
  }
  .launchMock{
    min-height: 300px;
    padding: 18px;
    background: linear-gradient(180deg, #f8f6f1 0 68%, #efede8 68% 100%);
  }
  .launchMock__thread{
    width: calc(100% - 26px);
    padding: 12px;
  }
  .launchMock__messageBody p{
    max-width: none;
  }
  .launchMock__actionPill{
    top: auto;
    right: 18px;
    bottom: 108px;
    font-size: 12px;
  }
  .launchMock__ownerPill{
    top: auto;
    right: 30px;
    bottom: 82px;
  }
  .launchMock__arrow{
    display: none;
  }
  .launchMock__card{
    right: 18px;
    left: 18px;
    bottom: 18px;
    width: auto;
  }
  .launchSection__detail{
    padding: 24px 20px 26px;
  }
  .launchSection__detail h3{
    font-size: clamp(24px, 7vw, 34px);
  }
  .launchSection__detail p{
    max-width: none;
    font-size: 16px;
    line-height: 1.6;
  }
  .faqSection{
    padding: 24px 18px;
    border-radius: var(--radius-shell);
    gap: 22px;
  }
  .faqSection__eyebrow{
    margin-bottom: 16px;
  }
  .faqSection__introCard{
    padding: var(--space-card-mobile);
  }
  .faqItem{
    border-radius: 0;
  }
  .faq summary{
    padding: 18px 18px;
    gap: 14px;
  }
  .faqItem__title{
    font-size: 18px;
  }
  .faqItem:not(.faqItem--featured) .faqItem__title{
    font-size: 18px;
  }
  .faqItem__icon{
    width: 36px;
    height: 36px;
    border-radius: 0;
    flex-basis: 36px;
  }
  .faqItem__contentInner{
    padding: 0 18px 0;
  }
  .faqItem[open] .faqItem__contentInner{
    padding-bottom: 18px;
  }
  .faqItem__contentInner p,
  .faqItem__summary{
    font-size: 14px;
  }
  .ctaFooterShell{
    padding: 18px;
    border-radius: var(--radius-shell);
  }
  .card--cta,
  .card--contact{
    padding: var(--space-card-mobile);
    border-radius: var(--radius-card);
  }
  .ctaPanel__title{
    max-width: none;
    font-size: clamp(28px, 8vw, 40px);
    white-space: normal;
  }
  .ctaPanel__body{
    font-size: 16px;
  }
  .ctaPanel__actions{
    align-items: flex-start;
    gap: 14px;
  }
  .ctaPanel__trust{
    gap: 8px;
  }
  .ctaPanel__trust span{
    width: 100%;
    justify-content: flex-start;
  }
  .grid{ grid-template-columns: repeat(12, 1fr); }
  .span-8, .span-6, .span-4, .card{ grid-column: span 12; }
  .principles{ grid-template-columns: 1fr; }
  .pricingHero{
    align-items:flex-start;
    text-align:left;
  }
  .pricingToolbar{
    margin-top: 20px;
    justify-content: flex-start;
    gap: 14px;
  }
  .pricingTeamSize,
  .billingToggle{
    width: 100%;
  }
  .pricingTeamSize{
    gap: 8px;
  }
  .pricingTeamSize__value{
    min-width: 72px;
    min-height: 40px;
  }
  .pricingTeamSize__notice{
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
  }
  .pricingTrustLine{
    margin-top: 16px;
    text-align: left;
  }
  .pricingDeck{
    grid-template-columns: 1fr;
    border-radius: 22px;
  }
  .pricingCard{
    padding: 52px var(--space-card-mobile) 28px;
    border-right: 0;
    border-top: 1px solid rgba(18,19,26,.18);
  }
  .pricingCard:first-child{ border-top: 0; }
  .pricingCard:nth-child(n + 3){ border-top: 1px solid rgba(18,19,26,.18); }
  .pricingCard--featured{
    transform: none;
    box-shadow: none;
  }
  .pricingCard h3,
  .pricingCard__desc{
    text-align: left;
    margin-left: 0;
  }
  .pricingCard__price{
    justify-items: start;
  }
  .pricingCard__period{
    text-align: left;
  }
  .pricingCard__actions{
    align-items: stretch;
  }
  .pricingCard__actions .btn{
    width: 100%;
  }
  .pricingCard__desc,
  .pricingCard__micro,
  .pricingCard__note{
    min-height: 0;
  }
  .pricingCard__price{
    margin-top: 26px;
  }
  .pricingCard__actions{
    min-height: 0;
    margin-top: 18px;
  }
  .pricingCard__sectionTitle{
    margin-top: 26px;
  }
  .trustBlock__industryGroup{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  .trustBlock__industryItem{
    font-size: 15px;
  }
  .trustBlock__industryItem--caps{
    font-size: 12px;
  }
  .trustBlock__industryItem--wide{
    font-size: 13px;
  }
  .trustBlock__industryItem--title{
    font-size: 15px;
  }
  .trustBlock__industryItem--plus{
    font-size: 14px;
  }
}

@media (max-width: 480px){
  .brand__name{
    display: none;
  }
  .footerBrand .brand__name{
    display: inline;
  }
  .nav__right{
    gap: 6px;
  }
  .nav__divider{
    display: none;
  }
  .nav__right .btn--dark{
    padding: 12px 14px;
  }
  .nav__right .btn--ghost{
    padding: 10px 8px;
  }
}

@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior: auto;
  }
  .heroIconCarousel__track{
    animation: none;
    transform: none;
  }
  .trustBlock__industryTrack{
    animation: none;
    transform: none;
  }
  [data-section-wrapper] .sectionRevealItem{
    opacity: 1;
    transform: none;
    transition: none;
  }
  .faqItem,
  .faq summary,
  .faqItem__icon,
  .faqItem__icon::before,
  .faqItem__icon::after,
  .faqItem__content,
  .faqItem__contentInner,
  .faqItem__contentInner > *{
    transition: none;
  }
  .faqItem__content{
    opacity: 1;
  }
  .faqItem__contentInner > *{
    transform: none;
  }
}
