:root {
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", system-ui, sans-serif;
  --mono: "SF Mono", SFMono-Regular, ui-monospace, Menlo, monospace;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}
[data-theme="light"] {
  --bg: #fff;
  --bg1: #fafafa;
  --bg2: #f5f5f7;
  --bg3: #ebebed;
  --fg: #1d1d1f;
  --fg2: #424245;
  --fg3: #86868b;
  --fg4: #aeaeb2;
  --border: rgba(0, 0, 0, 0.06);
  --border-s: rgba(0, 0, 0, 0.1);
  --card: #fff;
  --sh: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.04);
  --nav-bg: rgba(255, 255, 255, 0.72);
  --bp: #1d1d1f;
  --bpf: #fff;
  --bph: #000;
  --green: #34c759;
  --amber: #ff9f0a;
  --blue: #007aff;
  --red: #ff3b30;
  --bg-g: rgba(52, 199, 89, 0.08);
  --bg-a: rgba(255, 159, 10, 0.08);
  --bg-b: rgba(0, 122, 255, 0.08);
  --bg-r: rgba(255, 59, 48, 0.06);
  --muted: rgba(0, 0, 0, 0.04);
}
[data-theme="dark"] {
  --bg: #000;
  --bg1: #0a0a0a;
  --bg2: #141414;
  --bg3: #1c1c1e;
  --fg: #f5f5f7;
  --fg2: #a1a1a6;
  --fg3: #6e6e73;
  --fg4: #48484a;
  --border: rgba(255, 255, 255, 0.07);
  --border-s: rgba(255, 255, 255, 0.1);
  --card: #0a0a0a;
  --sh: 0 1px 3px rgba(0, 0, 0, 0.2), 0 8px 24px rgba(0, 0, 0, 0.2);
  --nav-bg: rgba(0, 0, 0, 0.72);
  --bp: #f5f5f7;
  --bpf: #000;
  --bph: #fff;
  --green: #30d158;
  --amber: #ffd60a;
  --blue: #0a84ff;
  --red: #ff453a;
  --bg-g: rgba(48, 209, 88, 0.1);
  --bg-a: rgba(255, 214, 10, 0.08);
  --bg-b: rgba(10, 132, 255, 0.1);
  --bg-r: rgba(255, 69, 58, 0.08);
  --muted: rgba(255, 255, 255, 0.05);
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.47;
  letter-spacing: -0.011em;
  transition:
    background 0.4s var(--ease),
    color 0.4s var(--ease);
}
::selection {
  background: rgba(0, 122, 255, 0.15);
}
a {
  color: inherit;
  text-decoration: none;
}
.w {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 52px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
nav.s {
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-color: var(--border);
}
nav .w {
  display: flex;
  align-items: center;
  width: 100%;
}
.n-l {
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 18px;
  width: auto;
}
[data-theme="light"] .logo-dark {
  display: none;
}
[data-theme="dark"] .logo-light {
  display: none;
}
.n-m {
  display: flex;
  gap: 24px;
  list-style: none;
}
.n-m a {
  font-size: 13px;
  color: var(--fg3);
  font-weight: 500;
  transition: color 0.15s;
  letter-spacing: -0.01em;
}
.n-m a:hover {
  color: var(--fg);
}
.n-r {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tbtn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--fg3);
}
.tbtn:hover {
  border-color: var(--border-s);
  color: var(--fg2);
}
.tbtn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-out);
}
.tbtn:hover svg {
  transform: rotate(30deg);
}
[data-theme="light"] .tbtn .ic-moon {
  display: block;
}
[data-theme="light"] .tbtn .ic-sun {
  display: none;
}
[data-theme="dark"] .tbtn .ic-moon {
  display: none;
}
[data-theme="dark"] .tbtn .ic-sun {
  display: block;
}
.b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 13px;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.b-s {
  padding: 6px 12px;
}
.b-m {
  padding: 8px 16px;
}
.b-l {
  padding: 10px 22px;
  font-size: 14px;
}
.b-p {
  background: var(--bp);
  color: var(--bpf);
}
.b-p:hover {
  background: var(--bph);
}
.b-o {
  background: none;
  color: var(--fg2);
  border: 1px solid var(--border-s);
}
.b-o:hover {
  border-color: var(--fg4);
  color: var(--fg);
}
.b-g {
  background: none;
  color: var(--fg3);
}
.b-g:hover {
  color: var(--fg);
}
.mob {
  display: none;
  background: 0;
  border: 0;
  cursor: pointer;
  padding: 6px;
  color: var(--fg3);
}
.mob svg {
  width: 20px;
  height: 20px;
}

/* HERO */
.hero {
  padding: 140px 0 40px;
  text-align: center;
}
.h-lab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg3);
  margin-bottom: 20px;
}
.h-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.hero h1 {
  font-size: clamp(40px, 5.6vw, 68px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero-p {
  font-size: 17px;
  line-height: 1.53;
  color: var(--fg2);
  max-width: 460px;
  margin: 0 auto 32px;
}
.h-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.h-note {
  font-size: 12px;
  color: var(--fg4);
}

/* PRODUCT SHOT */
.shot {
  padding: 48px 0 0;
}
.shot-f {
  max-width: 1040px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--sh);
  transition: all 0.4s;
}
.shot-bar {
  height: 38px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.sd {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.sd:nth-child(1) {
  background: #ff5f57;
}
.sd:nth-child(2) {
  background: #febc2e;
}
.sd:nth-child(3) {
  background: #28c840;
}
.shot-url {
  flex: 1;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg4);
}
.shot-body {
  padding: 16px;
}
.app-g {
  display: grid;
  grid-template-columns: 160px 1fr 190px;
  gap: 12px;
  min-height: 310px;
}
.app-sb {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 4px 0;
}
.sb-i {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border-radius: 7px;
  font-size: 12px;
  color: var(--fg3);
  font-weight: 500;
  transition: background 0.15s;
}
.sb-i:hover,
.sb-i.on {
  background: var(--muted);
}
.sb-i.on {
  color: var(--fg);
}
.sb-i svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}
.sb-c {
  margin-left: auto;
  font-size: 10px;
  font-family: var(--mono);
  color: var(--fg4);
}
.dt {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.dt-h {
  display: grid;
  grid-template-columns: 2.2fr 1.1fr 0.9fr 0.7fr;
  padding: 7px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  font-weight: 500;
  color: var(--fg4);
  letter-spacing: 0.02em;
}
.dt-r {
  display: grid;
  grid-template-columns: 2.2fr 1.1fr 0.9fr 0.7fr;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  align-items: center;
  transition: background 0.1s;
}
.dt-r:last-child {
  border: 0;
}
.dt-r:hover {
  background: var(--muted);
}
.u {
  display: flex;
  align-items: center;
  gap: 8px;
}
.av {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}
.u-n {
  font-weight: 500;
  font-size: 12px;
}
.u-t {
  font-size: 10.5px;
  color: var(--fg4);
}
.badge {
  display: inline-flex;
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 10.5px;
  font-weight: 500;
}
.badge-g {
  background: var(--bg-g);
  color: var(--green);
}
.badge-a {
  background: var(--bg-a);
  color: var(--amber);
}
.badge-b {
  background: var(--bg-b);
  color: var(--blue);
}
.badge-m {
  background: var(--muted);
  color: var(--fg3);
}
.co {
  font-size: 11.5px;
  color: var(--fg3);
}
.fe {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg3);
}
.sts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.st {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
}
.st-l {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--fg4);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.st-v {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}
.st-d {
  font-size: 11px;
  font-weight: 500;
  color: var(--green);
  margin-top: 3px;
}
.st-bar {
  display: flex;
  gap: 2px;
  margin-top: 8px;
}
.st-seg {
  height: 3px;
  border-radius: 1.5px;
  background: var(--bg3);
}

/* SOCIAL PROOF — pre-launch version */
.proof {
  padding: 64px 0;
  text-align: center;
}
.proof-h {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.proof-d {
  font-size: 14px;
  color: var(--fg3);
  max-width: 400px;
  margin: 0 auto 28px;
  line-height: 1.5;
}
.founders {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.founder {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg1);
  transition: border-color 0.2s;
}
.founder:hover {
  border-color: var(--border-s);
}
.founder-av {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg2);
}
.founder-n {
  font-size: 13px;
  font-weight: 600;
}
.founder-r {
  font-size: 11.5px;
  color: var(--fg4);
}

/* SECTIONS */
.div {
  width: 100%;
  height: 1px;
  background: var(--border);
}
.sec-lab {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 10px;
}
.sec-h {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.sec-d {
  font-size: 15px;
  color: var(--fg2);
  line-height: 1.55;
  max-width: 400px;
}

/* FEATURES */
.feat {
  padding: 96px 0 80px;
}
.feat-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}
.feat-stmt {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 440px;
}
.feat-desc {
  font-size: 15px;
  color: var(--fg2);
  line-height: 1.6;
  padding-top: 8px;
}
.fg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.fc {
  background: var(--bg);
  padding: 28px 24px;
  transition: background 0.2s;
}
.fc:hover {
  background: var(--bg1);
}
.fc-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.fc-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.5;
  fill: none;
}
.fc h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}
.fc p {
  font-size: 13px;
  color: var(--fg3);
  line-height: 1.5;
}

/* BENTO */
.bento {
  padding: 0 0 96px;
}
.bento-hd {
  margin-bottom: 40px;
  margin-top: 40px;
}
.bento-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.bx {
  background: var(--bg1);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  overflow: hidden;
  transition:
    border-color 0.2s,
    box-shadow 0.3s;
}
.bx:hover {
  border-color: var(--border-s);
  box-shadow: var(--sh);
}
.bx.tall {
  grid-row: span 2;
}
.bx h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 5px;
}
.bx > p {
  font-size: 13px;
  color: var(--fg3);
  line-height: 1.5;
}

/* Mock elements */
.evts {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.evt {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 12px;
  transition: background 0.15s;
}
.evt:hover {
  background: var(--muted);
}
.evt-ic {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
  font-weight: 600;
}
.evt-g {
  background: var(--bg-g);
  color: var(--green);
}
.evt-b {
  background: var(--bg-b);
  color: var(--blue);
}
.evt-a {
  background: var(--bg-a);
  color: var(--amber);
}
.evt-tx {
  flex: 1;
  color: var(--fg2);
}
.evt-tm {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--fg4);
}
.pipe {
  margin-top: 18px;
}
.pipe-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.psg {
  text-align: center;
  padding: 7px 0;
  border-radius: 6px;
  font-size: 9.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pipe-num {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 600;
  margin-top: 2px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.pipe-lab {
  font-size: 10px;
  color: var(--fg4);
  font-weight: 500;
  margin-top: 1px;
}
.p1 {
  background: var(--bg-b);
  color: var(--blue);
}
.p2 {
  background: var(--bg-a);
  color: var(--amber);
}
.p3 {
  background: var(--muted);
  color: var(--fg3);
}
.p4 {
  background: var(--bg-g);
  color: var(--green);
}

/* Talent pool mock */
.pools {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pool {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  transition: background 0.15s;
}
.pool:hover {
  background: var(--muted);
}
.pool-color {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  flex-shrink: 0;
}
.pool-name {
  font-weight: 500;
  flex: 1;
}
.pool-count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg4);
}

/* eSign mock */
.esign {
  margin-top: 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.esign-h {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 500;
  color: var(--fg3);
}
.esign-status {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}
.esign-body {
  padding: 8px;
}
.esign-r {
  display: flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 12px;
  gap: 10px;
}
.esign-r:hover {
  background: var(--muted);
}
.esign-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
}
.esign-name {
  font-weight: 500;
  flex: 1;
}
.esign-s {
  font-size: 11px;
  font-weight: 500;
}

/* Portal */
.ptl {
  margin-top: 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.ptl-h {
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 500;
  color: var(--fg3);
}
.ptl-live {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--green);
  font-weight: 500;
}
.ptl-live i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  display: block;
}
.ptl-r {
  display: flex;
  align-items: center;
  padding: 7px 12px;
  font-size: 12px;
}
.ptl-r:hover {
  background: var(--muted);
}
.ptl-n {
  font-weight: 500;
  flex: 1;
}
.ptl-s {
  font-size: 11px;
  color: var(--fg4);
}

/* HOW */
.how {
  padding: 96px 0;
}
.how-hd {
  text-align: center;
  margin-bottom: 56px;
}
.how-hd .sec-d {
  margin: 0 auto;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.step {
  padding: 24px;
  background: var(--bg1);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.step-n {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg4);
  margin-bottom: 14px;
}
.step h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}
.step p {
  font-size: 13px;
  color: var(--fg3);
  line-height: 1.5;
}

/* PRICING */
.pricing {
  padding: 96px 0;
}
.pr-hd {
  text-align: center;
  margin-bottom: 48px;
}
.pr-hd .sec-d {
  margin: 0 auto;
}
.pr-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.pk {
  background: var(--bg1);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.2s,
    box-shadow 0.3s;
}
.pk:hover {
  border-color: var(--border-s);
  box-shadow: var(--sh);
}
.pk.hl {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}
.pk-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 600;
  background: var(--bg-b);
  color: var(--blue);
  margin-bottom: 14px;
}
.pk-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}
.pk-desc {
  font-size: 12px;
  color: var(--fg4);
  margin-bottom: 16px;
}
.pk-price {
  display: flex;
  align-items: baseline;
  gap: 1px;
  margin-bottom: 2px;
}
.pk-price .d {
  font-size: 14px;
  color: var(--fg3);
}
.pk-price .n {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}
.pk-price .p {
  font-size: 12px;
  color: var(--fg4);
  margin-left: 3px;
}
.pk-bill {
  font-size: 11px;
  color: var(--fg4);
  margin-bottom: 20px;
}
.pk-feat {
  list-style: none;
  flex: 1;
  margin-bottom: 20px;
}
.pk-feat li {
  display: flex;
  gap: 7px;
  padding: 3.5px 0;
  font-size: 12.5px;
  color: var(--fg2);
}
.pk-feat .ck {
  color: var(--fg4);
  flex-shrink: 0;
}
.pk .b {
  width: 100%;
}

/* CTA */
.cta {
  padding: 96px 0 120px;
  text-align: center;
}
.cta .sec-h {
  max-width: 500px;
  margin: 0 auto 10px;
}
.cta .sec-d {
  max-width: 380px;
  margin: 0 auto 28px;
}
.cta-a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* FOOTER */
.foot {
  border-top: 1px solid var(--border);
  padding: 40px 0 28px;
}
.foot-g {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.foot-desc {
  font-size: 13px;
  color: var(--fg4);
  line-height: 1.5;
  margin-top: 10px;
  max-width: 220px;
}
.foot-c h4 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg4);
  margin-bottom: 10px;
}
.foot-c a {
  display: block;
  font-size: 13px;
  color: var(--fg3);
  padding: 3px 0;
  transition: color 0.15s;
}
.foot-c a:hover {
  color: var(--fg);
}
.foot-b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 11.5px;
  color: var(--fg4);
}
.foot-lk {
  display: flex;
  gap: 14px;
}
.foot-lk a {
  color: var(--fg4);
  transition: color 0.15s;
}
.foot-lk a:hover {
  color: var(--fg3);
}

/* REVEAL */
.r {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}
.r.v {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .app-g {
    grid-template-columns: 1fr;
  }
  .app-sb,
  .sts {
    display: none;
  }
  .feat-top {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .fg {
    grid-template-columns: 1fr 1fr;
  }
  .bento-g {
    grid-template-columns: 1fr;
  }
  .bx.tall {
    grid-row: auto;
  }
  .pr-g {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  .foot-g {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .n-m {
    display: none;
  }
  .b-g.nl {
    display: none;
  }
  .mob {
    display: block;
  }
  .hero {
    padding: 108px 0 32px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .fg {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .founders {
    flex-direction: column;
  }
  .foot-g {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .foot-b {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
