:root {
  --ink: #111113;
  --muted: #666a73;
  --line: #e9eaee;
  --soft: #f7f8fa;
  --paper: #ffffff;
  --mint: #2ab7a9;
  --lime: #c9ef5f;
  --deep: #18191d;
  --font-sans: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}

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

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

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  border-bottom: 1px solid rgba(233, 234, 238, 0.9);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 750;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.nav-cta {
  padding: 0 20px;
  background: var(--ink);
  color: white;
}

.snap-section {
  scroll-margin-top: 80px;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 48px;
  padding: 116px 6vw 64px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 248, 250, 0.92), rgba(255, 255, 255, 0.35)),
    radial-gradient(circle at 80% 24%, rgba(42, 183, 169, 0.16), transparent 34%),
    #fff;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-logo {
  width: 104px;
  height: 104px;
  border-radius: 26px;
  margin-bottom: 24px;
  box-shadow: 0 18px 50px rgba(17, 17, 19, 0.12);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
  word-break: keep-all;
}

h1 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.12;
  font-weight: 780;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 28px 0 0;
  max-width: 640px;
  color: #4f535c;
  font-size: 20px;
  line-height: 1.72;
  font-weight: 420;
}

.toss-note {
  max-width: 620px;
  margin: 18px 0 0;
  color: #24262c;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  padding: 0 22px;
  border: 1px solid var(--line);
  max-width: 100%;
  text-align: center;
  flex: 0 0 auto;
}

.button.primary {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.button.secondary {
  background: white;
}

.compact-button {
  padding-inline: 18px;
}

.hero-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.hero-status span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #525761;
  font-size: 12px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 630px;
}

.phone {
  position: absolute;
  margin: 0;
  width: min(31vw, 270px);
  min-width: 188px;
  border-radius: 38px;
  padding: 10px;
  background: #101114;
  box-shadow: 0 30px 90px rgba(17, 17, 19, 0.22);
}

.phone img {
  width: 100%;
  aspect-ratio: 636 / 1048;
  object-fit: cover;
  border-radius: 30px;
}

.phone-left {
  left: 0;
  top: 92px;
  transform: rotate(-7deg);
}

.phone-center {
  left: 50%;
  top: 12px;
  z-index: 2;
  transform: translateX(-50%);
}

.phone-right {
  right: 0;
  top: 132px;
  transform: rotate(7deg);
}

.section {
  min-height: 100vh;
  padding: 116px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 64px;
}

.section-heading.compact {
  max-width: 760px;
}

.section h2,
.platform h2,
.about h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.18;
  font-weight: 780;
  letter-spacing: -0.02em;
}

.section-heading p:not(.eyebrow),
.platform p,
.about-copy > p,
.contact p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  font-weight: 420;
}

.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature,
.price-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.feature-num,
.plan {
  color: var(--mint);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature h3,
.price-card h3 {
  margin: 28px 0 12px;
  font-family: var(--font-sans);
  font-size: 25px;
  line-height: 1.28;
  font-weight: 760;
  letter-spacing: -0.01em;
}

.feature p,
.price-card p:not(.plan):not(.price) {
  color: var(--muted);
  line-height: 1.75;
}

.platform {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 116px 6vw;
  background: var(--deep);
  color: white;
}

.platform-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 72px;
  align-items: center;
  width: 100%;
}

.platform .eyebrow,
.about .eyebrow,
.contact .eyebrow {
  color: rgba(255, 255, 255, 0.56);
}

.platform p {
  color: rgba(255, 255, 255, 0.68);
}

.flow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.flow-list li {
  display: grid;
  gap: 8px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.flow-list strong {
  font-family: var(--font-sans);
  font-size: 25px;
  font-weight: 760;
}

.flow-list span {
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.7;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  min-height: 310px;
}

.price-card.highlighted {
  background: #101114;
  color: white;
  border-color: #101114;
}

.price-card.highlighted p:not(.plan):not(.price) {
  color: rgba(255, 255, 255, 0.68);
}

.price {
  margin: 24px 0;
  font-family: var(--font-sans);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.18;
  font-weight: 800;
}

.about {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 56px;
  align-items: center;
  padding: 116px 6vw;
  background: #111113;
  color: white;
}

.about-copy > p {
  color: rgba(255, 255, 255, 0.68);
  max-width: 850px;
}

.team-strip {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.team-strip img {
  width: 86px;
  height: 104px;
  object-fit: cover;
  border-radius: 8px;
}

.team-strip span {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-strip strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 780;
}

.team-strip p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.65;
}

.about-panel {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.about-panel h3 {
  margin: 0 0 24px;
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 780;
}

.about-panel ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-panel li {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.contact {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 116px 6vw;
  text-align: center;
  background: var(--soft);
}

.contact .eyebrow {
  color: var(--muted);
}

.contact h2 {
  max-width: 840px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 34px 0 18px;
}

.contact-actions .button {
  min-width: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 6vw;
  border-top: 1px solid var(--line);
  color: #7a7e87;
  font-size: 13px;
}

.footer div {
  display: grid;
  gap: 6px;
}

.footer strong {
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 21px;
  font-weight: 780;
}

.footer a {
  color: var(--ink);
  font-weight: 700;
}

.home-links {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 86px 6vw;
  background: #101114;
  color: white;
}

.home-links-heading {
  position: sticky;
  top: 112px;
  align-self: start;
  margin-bottom: 0;
}

.home-links-heading .eyebrow {
  color: rgba(255, 255, 255, 0.48);
}

.home-links-heading h2 {
  color: white;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.link-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.link-card:hover {
  background: white;
  color: var(--ink);
}

.link-card span {
  color: var(--mint);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.link-card strong {
  max-width: none;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.18;
  font-weight: 820;
  letter-spacing: -0.02em;
}

.page-main {
  padding-top: 80px;
}

.docs-main {
  padding-top: 80px;
  background: #fbfbfc;
}

.docs-hero {
  padding: 72px 6vw 42px;
  border-bottom: 1px solid var(--line);
  background: white;
}

.docs-hero h1 {
  max-width: 980px;
  font-size: clamp(34px, 5vw, 62px);
}

.docs-content {
  padding: 54px 6vw 96px;
}

.docs-content pre {
  max-width: 920px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: #24262c;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.85;
  white-space: pre-wrap;
}

.request-content {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  text-align: center;
}

.request-hero h1 {
  max-width: 980px;
  font-size: clamp(34px, 5vw, 62px);
}

.request-content p {
  margin: 0 auto;
  color: #3f434b;
  font-size: 18px;
  line-height: 1.8;
}

.request-content > p + p {
  margin-top: 28px;
}

.request-content a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.request-template {
  display: grid;
  gap: 10px;
  width: min(100%, 420px);
  margin: 34px auto 0;
  text-align: left;
}

.request-template p {
  margin: 0;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: #24262c;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 650;
}

.page-hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 56px;
  align-items: center;
  padding: 72px 6vw 86px;
  background:
    linear-gradient(90deg, rgba(247, 248, 250, 0.94), rgba(255, 255, 255, 0.54)),
    radial-gradient(circle at 78% 28%, rgba(42, 183, 169, 0.14), transparent 34%),
    #fff;
}

.page-phone {
  width: min(100%, 290px);
  margin: 0 auto;
  padding: 10px;
  border-radius: 38px;
  background: #101114;
  box-shadow: 0 30px 90px rgba(17, 17, 19, 0.22);
}

.page-phone img {
  width: 100%;
  aspect-ratio: 636 / 1048;
  object-fit: cover;
  border-radius: 30px;
}

.phone-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 14px;
  align-items: center;
}

.phone-gallery img {
  width: 100%;
  max-width: 190px;
  justify-self: center;
  aspect-ratio: 636 / 1048;
  object-fit: cover;
  border: 7px solid #101114;
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(17, 17, 19, 0.16);
}

.page-section {
  min-height: 80vh;
  padding: 116px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
}

.page-section.first,
.export-section.first,
.founder-section.first {
  padding-top: 136px;
}

.page-section h1,
.export-section h1,
.founder-card h1 {
  max-width: 980px;
}

.page-dark {
  min-height: 80vh;
}

.partner-teaser {
  min-height: 74vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  padding: 96px 6vw;
  border-top: 1px solid var(--line);
  background: #fbfbfc;
}

.partner-teaser h2,
.partner-hero h1,
.partner-section h2,
.partner-dark h2,
.founder-card h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1.18;
  font-weight: 780;
  letter-spacing: -0.02em;
}

.partner-teaser p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  font-weight: 350;
}

.partner-page {
  padding-top: 80px;
}

.partner-hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 58px;
  padding: 72px 6vw 86px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 248, 250, 0.94), rgba(255, 255, 255, 0.52)),
    radial-gradient(circle at 76% 32%, rgba(42, 183, 169, 0.18), transparent 34%),
    #fff;
}

.partner-hero-copy {
  max-width: 760px;
}

.partner-phone-stage {
  position: relative;
  min-height: 610px;
}

.partner-phone-main {
  left: 50%;
  top: 0;
  z-index: 2;
  width: min(32vw, 290px);
  transform: translateX(-50%);
}

.partner-phone-sub {
  right: 4%;
  top: 148px;
  width: min(25vw, 225px);
  transform: rotate(7deg);
  opacity: 0.92;
}

.partner-section {
  min-height: 100vh;
  padding: 116px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
}

.related-pages {
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 116px 6vw;
  background: #101114;
  color: white;
}

.related-pages .eyebrow {
  color: rgba(255, 255, 255, 0.48);
}

.related-pages .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.related-grid {
  border-color: rgba(255, 255, 255, 0.14);
}

.partner-dark {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 72px;
  padding: 116px 6vw;
  background: var(--deep);
  color: white;
}

.partner-dark p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.8;
  font-weight: 350;
}

.partner-list {
  display: grid;
  gap: 16px;
}

.partner-list article {
  display: grid;
  gap: 10px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.partner-list strong {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 780;
  line-height: 1.25;
}

.partner-list span {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
}

.founder-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 116px 6vw;
  background: #f7f8fa;
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
  width: 100%;
}

.founder-card > img {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(17, 17, 19, 0.12);
}

.founder-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
  font-weight: 350;
}

.career-list {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin: 28px 0;
}

.career-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.career-list span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.career-list strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  text-align: right;
}

.partner-contact {
  background: white;
}

.export-section {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 116px 6vw;
  background: #fbfbfc;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.market-grid article {
  display: grid;
  gap: 18px;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.market-grid strong {
  font-family: var(--font-sans);
  font-size: 28px;
  line-height: 1.28;
  font-weight: 780;
}

.market-grid span {
  color: var(--muted);
  line-height: 1.75;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  display: grid;
  gap: 22px;
  align-content: space-between;
  min-height: 520px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.step-card h3 {
  margin: 22px 0 12px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 820;
  letter-spacing: -0.02em;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.step-card img {
  width: min(100%, 190px);
  justify-self: center;
  border-radius: 26px;
  border: 7px solid #101114;
  box-shadow: 0 18px 48px rgba(17, 17, 19, 0.16);
}

.feature-step {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 64px;
  align-items: center;
  padding: 116px 6vw;
  background: white;
}

.feature-step.alt {
  background: #f7f8fa;
}

.feature-step h2 {
  margin: 24px 0 20px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.05;
  font-weight: 840;
  letter-spacing: -0.04em;
}

.feature-step p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.8;
}

@media (max-width: 1080px) {
  .hero,
  .page-hero,
  .feature-step,
  .platform-inner,
  .about,
  .partner-teaser,
  .partner-hero,
  .partner-dark,
  .founder-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-visual {
    min-height: 500px;
  }

  .partner-phone-stage {
    min-height: 520px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-links {
    grid-template-columns: 1fr;
  }

  .home-links-heading {
    position: static;
  }

  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .market-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav {
    height: 68px;
    padding: 0 18px;
  }

  .brand span {
    font-size: 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 15px;
  }

  .button {
    min-height: 44px;
    white-space: normal;
    line-height: 1.35;
    padding: 10px 18px;
  }

  .snap-section {
    scroll-margin-top: 68px;
  }

  .hero,
  .page-hero,
  .feature-step,
  .home-links,
  .section,
  .platform,
  .about,
  .contact,
  .partner-teaser,
  .partner-hero,
  .partner-section,
  .related-pages,
  .partner-dark,
  .founder-section,
  .export-section {
    padding: 92px 22px 64px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 40px;
    line-height: 1.16;
  }

  .hero-lead,
  .feature-step p,
  .section-heading p:not(.eyebrow),
  .platform p,
  .about-copy > p,
  .contact p,
  .partner-dark p:not(.eyebrow),
  .founder-card p:not(.eyebrow) {
    font-size: 16px;
  }

  .page-main,
  .partner-page,
  .docs-main {
    padding-top: 68px;
  }

  .docs-hero,
  .docs-content {
    padding-left: 22px;
    padding-right: 22px;
  }

  .docs-content pre {
    padding: 22px;
    font-size: 15px;
  }

  .request-content {
    padding: 24px;
  }

  .hero-visual {
    display: grid;
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    gap: 12px;
    min-height: 0;
    overflow-x: auto;
    padding: 12px 2px 28px;
  }

  .partner-phone-stage {
    display: grid;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 12px;
    min-height: 0;
    overflow-x: auto;
    padding: 12px 2px 28px;
  }

  .phone,
  .phone-left,
  .phone-center,
  .phone-right,
  .partner-phone-main,
  .partner-phone-sub {
    position: static;
    width: 100%;
    min-width: 160px;
    transform: none;
    border-radius: 28px;
    padding: 7px;
  }

  .phone img {
    border-radius: 22px;
  }

  .feature-grid,
  .pricing-grid,
  .link-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .feature,
  .price-card,
  .link-card,
  .step-card,
  .market-grid article {
    min-height: 0;
  }

  .step-card img {
    width: min(100%, 210px);
  }

  .link-card {
    min-height: 86px;
    padding: 20px;
  }

  .link-card strong {
    max-width: none;
    font-size: 24px;
  }

  .team-strip {
    align-items: flex-start;
  }

  .founder-card > img {
    max-width: 280px;
  }

  .career-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .career-list strong {
    text-align: left;
  }

  .footer {
    flex-direction: column;
  }
}
