:root {
  --ink: #11191d;
  --ink-soft: #637278;
  --forest-950: #0c171b;
  --forest-900: #111d22;
  --forest-800: #0a5c53;
  --forest-700: #0e7468;
  --mint: #55e0c9;
  --mint-soft: #e5fcf7;
  --lime: #55e0c9;
  --orange: #b87a12;
  --violet: #5547c7;
  --violet-soft: #f0effc;
  --blue: #1f64b8;
  --rose: #c94f7c;
  --paper: #f8fbfa;
  --paper-deep: #edf4f6;
  --white: #ffffff;
  --line: rgba(21, 34, 39, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow-sm: 0 12px 32px rgba(16, 27, 32, 0.08);
  --shadow-lg: 0 30px 80px rgba(16, 27, 32, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shell: 1180px;
  --header-height: 78px;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: var(--font-sans);
}

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

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
p,
dl,
dd,
ol,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: inherit;
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h1 {
  font-family: var(--font-display);
  text-wrap: balance;
}

h2,
h3 {
  text-wrap: balance;
}

p {
  color: var(--ink-soft);
}

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

ul,
ol {
  padding-left: 0;
}

::selection {
  background: var(--lime);
  color: var(--forest-950);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--forest-950);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(251, 250, 244, 0.92);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 12px 30px rgba(3, 30, 25, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  display: inline-flex;
  overflow: hidden;
  width: 39px;
  height: 39px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: var(--forest-900);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
  transform: rotate(-4deg);
}

.brand-mark span:last-child {
  color: var(--lime);
}

.brand-name {
  color: var(--forest-900);
  font-size: 1.02rem;
  font-weight: 770;
  letter-spacing: -0.045em;
}

.brand-name strong {
  color: var(--forest-700);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  position: relative;
  color: #385049;
  font-size: 0.89rem;
  font-weight: 680;
  transition: color 160ms ease;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--forest-700);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--forest-900);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav .nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--forest-900);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 4px;
  background: var(--forest-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.breadcrumb {
  padding-top: 16px;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #63746f;
  font-size: 0.82rem;
  list-style: none;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb li + li::before {
  color: #9aa7a3;
  content: "/";
}

.breadcrumb a:hover {
  color: var(--forest-700);
}

.section {
  padding: 84px 0;
}

.section-tint {
  border-block: 1px solid rgba(17, 36, 31, 0.08);
  background: var(--paper-deep);
}

.site-footer {
  padding: 68px 0 24px;
  background: var(--forest-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.6fr) 0.7fr 0.7fr;
  gap: 70px;
  padding-bottom: 48px;
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-brand .brand-name strong {
  color: var(--lime);
}

.footer-intro p {
  max-width: 440px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-grid nav strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid nav a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.footer-grid nav a:hover {
  color: var(--lime);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.eyebrow-dark {
  color: var(--forest-700);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin-bottom: 13px;
  font-size: clamp(1.9rem, 3.3vw, 3rem);
}

.section-heading > p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  font-size: 1.03rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 780;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--lime);
  color: var(--forest-950);
  box-shadow: 0 10px 30px rgba(200, 244, 90, 0.18);
}

.button-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--forest-900);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--forest-950);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-700);
  font-weight: 800;
}

.text-link span {
  font-size: 1.2rem;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.page-hero {
  padding: 50px 0 62px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.6fr);
  gap: 48px;
  align-items: center;
}

.page-hero h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 5.2vw, 4.6rem);
  line-height: 1;
}

.page-lead {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
}

.hero-note {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.hero-note::before {
  position: absolute;
  top: -1px;
  left: 28px;
  width: 64px;
  height: 3px;
  border-radius: 3px;
  background: var(--orange);
  content: "";
}

.hero-note > span {
  display: block;
  margin-bottom: 10px;
  color: var(--forest-700);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-note p {
  margin: 0;
  color: var(--ink);
  font-size: 0.93rem;
}

.answer-section {
  padding: 56px 0;
  border-block: 1px solid var(--line);
  background: var(--white);
}

.answer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.answer-grid h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.answer-grid > div:first-child > p:last-child {
  margin-bottom: 0;
  font-size: 1.02rem;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.fact-grid > div {
  min-height: 126px;
  padding: 23px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-grid dt {
  margin-bottom: 8px;
  color: var(--forest-700);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fact-grid dd {
  color: var(--ink);
  font-weight: 690;
  line-height: 1.45;
}

.link-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.link-card {
  min-height: 320px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  transition: background 180ms ease, transform 180ms ease;
}

.link-card:hover {
  z-index: 2;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.card-index {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  border-radius: 50%;
  background: var(--mint-soft);
  color: var(--forest-700);
  font-size: 0.75rem;
  font-weight: 850;
}

.link-card:nth-child(2) .card-index {
  background: #eff8c9;
}

.link-card:nth-child(3) .card-index {
  background: #ffe2ce;
}

.link-card h3 {
  margin-bottom: 14px;
  font-size: 1.6rem;
}

.link-card p {
  min-height: 76px;
  margin-bottom: 24px;
}

.link-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-700);
  font-weight: 800;
}

.link-card a span {
  transition: transform 160ms ease;
}

.link-card a:hover span {
  transform: translateX(4px);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 0;
  color: var(--ink);
  font-weight: 760;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--forest-900);
  color: var(--white);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 760px;
  padding: 0 54px 22px 0;
  margin-bottom: 0;
}

.cta-section {
  padding: 0 0 72px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  overflow: hidden;
  padding: 46px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 20%, rgba(117, 240, 189, 0.2), transparent 27%),
    var(--forest-900);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.cta-card > div:first-child {
  max-width: 690px;
}

.cta-card h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.cta-card p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.updated-note {
  margin: 32px 0 0;
  color: #72817d;
  font-size: 0.76rem;
}

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: 92px 0 96px;
  background: var(--forest-950);
  color: var(--white);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 85%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(117, 240, 189, 0.13);
  border-radius: 50%;
}

.hero-orbit-one {
  top: -270px;
  right: -170px;
  width: 700px;
  height: 700px;
}

.hero-orbit-two {
  right: 120px;
  bottom: -470px;
  width: 760px;
  height: 760px;
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  gap: 70px;
  align-items: center;
}

.home-hero h1 {
  max-width: 760px;
  margin-bottom: 25px;
  font-size: clamp(3.4rem, 6.3vw, 6.6rem);
  text-transform: uppercase;
}

.home-hero h1 em {
  color: var(--lime);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
}

.launch-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.launch-note i,
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(117, 240, 189, 0.1);
}

.operation-map {
  position: relative;
  min-height: 500px;
}

.map-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  width: 148px;
  height: 148px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 42%;
  background: var(--lime);
  color: var(--forest-950);
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(200, 244, 90, 0.18);
  transform: translate(-50%, -50%) rotate(-6deg);
}

.map-core span {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.map-core strong {
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-node {
  position: absolute;
  z-index: 2;
  width: 168px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(11, 64, 53, 0.92);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.map-node > span {
  display: block;
  margin-bottom: 16px;
  color: var(--mint);
  font-size: 0.68rem;
  font-weight: 850;
}

.map-node strong,
.map-node small {
  display: block;
}

.map-node strong {
  margin-bottom: 2px;
  color: var(--white);
}

.map-node small {
  color: rgba(255, 255, 255, 0.53);
}

.map-product {
  top: 22px;
  left: 10px;
}

.map-channel {
  top: 28px;
  right: 0;
}

.map-order {
  bottom: 20px;
  left: 0;
}

.map-profit {
  right: 12px;
  bottom: 12px;
}

.map-profit > span {
  color: var(--orange);
}

.map-line {
  position: absolute;
  z-index: 1;
  width: 2px;
  height: 138px;
  background: linear-gradient(var(--mint), transparent);
  transform-origin: top;
}

.line-one {
  top: 128px;
  left: 147px;
  transform: rotate(-46deg);
}

.line-two {
  top: 128px;
  right: 145px;
  transform: rotate(45deg);
}

.line-three {
  bottom: 122px;
  left: 148px;
  transform: rotate(-135deg);
}

.line-four {
  right: 147px;
  bottom: 120px;
  background: linear-gradient(var(--orange), transparent);
  transform: rotate(135deg);
}

.split-feature,
.faq-preview,
.responsibility-grid,
.channel-section,
.workflow-grid,
.early-grid,
.story-grid,
.roadmap-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 90px;
  align-items: start;
}

.flow-list,
.compact-steps {
  margin: 0;
  list-style: none;
}

.flow-list li,
.compact-steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.flow-list li:first-child,
.compact-steps li:first-child {
  padding-top: 0;
}

.flow-list > li > span,
.compact-steps > li > span {
  color: var(--forest-700);
  font-size: 0.72rem;
  font-weight: 850;
}

.flow-list strong,
.compact-steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.flow-list p,
.compact-steps p {
  margin: 0;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
  list-style: none;
}

.step-grid li {
  min-height: 330px;
  padding: 38px;
  background: var(--paper);
}

.step-grid > li > span,
.need-grid > article > span,
.principle-grid > article > span {
  display: block;
  margin-bottom: 62px;
  color: var(--forest-700);
  font-size: 0.72rem;
  font-weight: 850;
}

.step-grid h2,
.need-grid h2,
.principle-grid h2 {
  margin-bottom: 14px;
  font-size: 1.55rem;
}

.step-grid li > strong {
  display: block;
  margin-top: 28px;
  color: var(--forest-700);
  font-size: 0.82rem;
}

.responsibility-table {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.table-row {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
}

.table-row > * {
  padding: 19px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.table-head {
  background: var(--forest-900);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-detail-card {
  min-height: 390px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.feature-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 58px;
  color: var(--forest-700);
  font-size: 0.72rem;
  font-weight: 850;
}

.feature-card-top i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
}

.feature-detail-card:nth-child(3n + 2) .feature-card-top i {
  background: var(--lime);
}

.feature-detail-card:nth-child(3n + 3) .feature-card-top i {
  background: var(--orange);
}

.feature-detail-card h2 {
  margin-bottom: 14px;
  font-size: 1.5rem;
}

.feature-detail-card ul,
.price-card ul,
.outcome-panel ul {
  margin: 24px 0 0;
  list-style: none;
}

.feature-detail-card li,
.price-card li,
.outcome-panel li {
  position: relative;
  padding: 7px 0 7px 20px;
  color: var(--ink-soft);
}

.feature-detail-card li::before,
.price-card li::before,
.outcome-panel li::before {
  position: absolute;
  top: 17px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.channel-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.channel-list span {
  display: flex;
  min-height: 170px;
  justify-content: flex-end;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  font-weight: 800;
  flex-direction: column;
}

.channel-list small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 500;
}

.need-grid,
.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.need-grid article,
.principle-grid article {
  min-height: 330px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.outcome-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  padding: 50px;
  border-radius: var(--radius-lg);
  background: var(--forest-900);
  color: var(--white);
}

.outcome-panel .section-heading {
  margin: 0;
}

.outcome-panel .section-heading h2 {
  margin: 0;
}

.outcome-panel ul {
  margin: 0;
}

.outcome-panel li {
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.72);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.section-pricing {
  padding-top: 56px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 510px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  flex-direction: column;
}

.price-card-featured {
  border-color: var(--forest-700);
  background: var(--forest-900);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-12px);
}

.recommended {
  position: absolute;
  top: 0;
  right: 28px;
  padding: 7px 12px;
  border-radius: 0 0 10px 10px;
  background: var(--lime);
  color: var(--forest-950);
  font-size: 0.68rem;
  font-weight: 850;
}

.price-label {
  margin-bottom: 28px;
  color: var(--forest-700);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card-featured .price-label {
  color: var(--mint);
}

.price-card h2 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.price-card-featured > p,
.price-card-featured li {
  color: rgba(255, 255, 255, 0.68);
}

.price-status {
  padding: 22px 0;
  margin: 14px 0;
  border-block: 1px solid var(--line);
}

.price-card-featured .price-status {
  border-color: var(--line-dark);
}

.price-status strong,
.price-status span {
  display: block;
}

.price-status strong {
  font-size: 1.7rem;
}

.price-status strong small {
  font-size: 0.85rem;
  font-weight: 700;
}

.price-status span {
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.price-status em {
  display: block;
  margin-top: 9px;
  color: var(--forest-700);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
}

.price-card-featured .price-status span,
.price-card-featured .price-status em {
  color: rgba(255, 255, 255, 0.5);
}

.price-card ul {
  margin-bottom: 28px;
}

.price-card > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: var(--forest-700);
  font-weight: 800;
}

.price-card-featured > a {
  color: var(--lime);
}

.pricing-disclosure {
  max-width: 860px;
  margin: 26px auto 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  text-align: center;
}

.pricing-rule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.pricing-rule-grid article {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.pricing-rule-grid article > span {
  display: block;
  margin-bottom: 48px;
  color: var(--forest-700);
  font-size: 0.72rem;
  font-weight: 850;
}

.pricing-rule-grid h2 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.pricing-activation-note {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.pricing-activation-note strong {
  display: block;
  margin-bottom: 4px;
}

.pricing-activation-note p {
  margin: 0;
}

.status-panel {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.status-panel strong {
  display: block;
  margin-bottom: 4px;
}

.status-panel p {
  margin: 0;
}

.story-copy {
  padding-top: 42px;
  font-size: 1.08rem;
}

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

.principle-grid article {
  min-height: 300px;
}

.roadmap {
  margin: 0;
  list-style: none;
}

.roadmap li {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 20px;
  padding-bottom: 32px;
}

.roadmap li::after {
  position: absolute;
  top: 15px;
  bottom: 0;
  left: 6px;
  width: 1px;
  background: var(--line);
  content: "";
}

.roadmap li:last-child::after {
  display: none;
}

.roadmap li > span {
  z-index: 1;
  width: 13px;
  height: 13px;
  margin-top: 6px;
  border: 2px solid #98a6a2;
  border-radius: 50%;
  background: var(--paper);
}

.roadmap li.complete > span {
  border-color: var(--forest-700);
  background: var(--mint);
}

.roadmap li.active > span {
  border-color: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 154, 87, 0.15);
}

.roadmap strong {
  font-size: 1.05rem;
}

.roadmap p {
  margin: 4px 0 0;
}

.faq-page-grid {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 70px;
}

.faq-aside {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: flex;
  align-items: flex-start;
  align-self: start;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  flex-direction: column;
}

.faq-aside strong {
  margin-bottom: 8px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-aside a {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.faq-aside a:hover {
  color: var(--forest-700);
}

.faq-list-large summary {
  padding: 27px 0;
  font-size: 1.08rem;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 17px;
  }

  .home-hero-grid {
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 38px;
  }

  .operation-map {
    transform: scale(0.88);
  }

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

  .pricing-rule-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    max-height: calc(100vh - var(--header-height));
    align-items: stretch;
    gap: 0;
    padding: 18px 24px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
    overflow-y: auto;
    flex-direction: column;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-cta {
    margin-top: 16px;
    padding: 13px 18px;
    text-align: center;
  }

  .home-hero {
    padding-top: 72px;
  }

  .home-hero-grid,
  .page-hero-grid,
  .answer-grid,
  .split-feature,
  .faq-preview,
  .responsibility-grid,
  .channel-section,
  .workflow-grid,
  .early-grid,
  .story-grid,
  .roadmap-grid,
  .outcome-panel {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .operation-map {
    width: min(100%, 520px);
    margin-inline: auto;
    transform: none;
  }

  .page-hero {
    padding: 42px 0 52px;
  }

  .link-card {
    min-height: 330px;
    padding: 28px;
  }

  .card-index {
    margin-bottom: 52px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

  .price-card-featured {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 36px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .section {
    padding: 64px 0;
  }

  .home-hero {
    min-height: auto;
    padding: 60px 0 68px;
  }

  .home-hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .operation-map {
    min-height: 440px;
    transform: scale(0.9);
  }

  .page-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .hero-note {
    padding: 24px;
  }

  .answer-section {
    padding: 58px 0;
  }

  .fact-grid,
  .link-card-grid,
  .step-grid,
  .feature-detail-grid,
  .need-grid,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .link-card,
  .need-grid article,
  .principle-grid article,
  .pricing-rule-grid article,
  .step-grid li {
    min-height: auto;
  }

  .card-index,
  .step-grid > li > span,
  .need-grid > article > span,
  .principle-grid > article > span,
  .feature-card-top {
    margin-bottom: 34px;
  }

  .table-row {
    grid-template-columns: 1fr;
    padding: 17px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .table-row > * {
    padding: 2px 0;
    border: 0;
  }

  .table-head {
    display: none;
  }

  .table-row strong {
    margin-bottom: 8px;
    color: var(--forest-700);
  }

  .channel-list {
    grid-template-columns: 1fr;
  }

  .channel-list span {
    min-height: 120px;
  }

  .outcome-panel {
    padding: 34px;
  }

  .faq-page-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .faq-aside {
    position: static;
  }

  .cta-card {
    align-items: flex-start;
    padding: 38px 28px;
    flex-direction: column;
  }

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

  .footer-intro {
    grid-column: 1 / -1;
  }

  .footer-meta {
    gap: 8px;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .button-row,
  .button {
    width: 100%;
  }

  .operation-map {
    min-height: 410px;
    margin: -25px 0;
    transform: scale(0.78);
  }

  .map-product,
  .map-order {
    left: -22px;
  }

  .map-channel,
  .map-profit {
    right: -22px;
  }

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

  .flow-list li,
  .compact-steps li {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .price-card {
    min-height: auto;
    padding: 28px;
  }

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

  .footer-intro {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Almadan Kazan ortak marka sistemi ve ana sayfa dönüşüm katmanı. */

body {
  background:
    radial-gradient(circle at 8% -8%, rgba(85, 224, 201, 0.12), transparent 28%),
    radial-gradient(circle at 92% 2%, rgba(85, 71, 199, 0.09), transparent 24%),
    var(--paper);
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
}

.site-header {
  background: rgba(248, 251, 250, 0.91);
}

.brand-mark {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--mint), var(--forest-700));
  color: var(--forest-950);
  box-shadow: 0 10px 24px rgba(18, 160, 141, 0.2);
  letter-spacing: -0.06em;
  transform: none;
}

.brand-mark span:last-child {
  color: inherit;
}

.brand-name {
  color: var(--ink);
  font-weight: 760;
  letter-spacing: -0.035em;
}

.brand-name strong {
  color: var(--forest-700);
}

.site-nav .nav-cta {
  background: linear-gradient(135deg, var(--forest-700), #12a08d);
  box-shadow: 0 10px 22px rgba(18, 160, 141, 0.18);
}

.eyebrow {
  color: var(--mint);
  letter-spacing: 0.11em;
}

.eyebrow-dark {
  color: var(--forest-700);
}

.button {
  border-radius: 12px;
}

.button-primary {
  background: linear-gradient(135deg, var(--mint), #22bba5);
  color: var(--forest-950);
  box-shadow: 0 12px 26px rgba(18, 160, 141, 0.22);
}

.button-secondary {
  border-color: var(--line);
  box-shadow: 0 8px 22px rgba(16, 27, 32, 0.05);
}

.text-link,
.price-card > a,
.link-card a {
  color: var(--forest-700);
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 20%, rgba(85, 71, 199, 0.09), transparent 24%),
    radial-gradient(circle at 8% 4%, rgba(85, 224, 201, 0.15), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(248, 251, 250, 0.42));
}

.page-hero h1 {
  color: var(--ink);
}

.hero-note {
  border-color: rgba(21, 34, 39, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(16, 27, 32, 0.09);
}

.hero-note::before {
  background: linear-gradient(90deg, var(--mint), var(--violet));
}

.section-tint {
  background:
    linear-gradient(135deg, rgba(85, 224, 201, 0.06), transparent 34%),
    var(--paper-deep);
}

.feature-detail-card,
.price-card,
.status-panel,
.link-card,
.need-grid article,
.principle-grid article {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(16, 27, 32, 0.055);
}

.feature-detail-card:nth-child(3n + 2) .feature-card-top i,
.link-card:nth-child(2) .card-index {
  background: var(--violet);
}

.feature-detail-card:nth-child(3n + 3) .feature-card-top i,
.link-card:nth-child(3) .card-index {
  background: var(--orange);
}

.price-card-featured {
  border-color: transparent;
  background:
    radial-gradient(circle at 90% 8%, rgba(85, 224, 201, 0.18), transparent 28%),
    linear-gradient(160deg, #14262c, var(--forest-900));
}

.recommended {
  background: var(--mint);
}

.cta-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at 82% 14%, rgba(85, 71, 199, 0.28), transparent 25%),
    radial-gradient(circle at 4% 105%, rgba(85, 224, 201, 0.2), transparent 28%),
    var(--forest-900);
}

.site-footer {
  background:
    radial-gradient(circle at 12% -15%, rgba(85, 224, 201, 0.12), transparent 30%),
    var(--forest-950);
}

.footer-brand .brand-name strong,
.footer-grid nav a:hover {
  color: var(--mint);
}

.home-hero {
  min-height: auto;
  padding: 68px 0 74px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 9% -10%, rgba(85, 224, 201, 0.22), transparent 34%),
    radial-gradient(circle at 96% 8%, rgba(85, 71, 199, 0.28), transparent 34%),
    linear-gradient(145deg, #0c171b 0%, #111d22 55%, #14262c 100%);
}

.home-hero::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-one {
  top: 18%;
  right: 45%;
  width: 180px;
  height: 180px;
  background: rgba(85, 224, 201, 0.08);
}

.hero-glow-two {
  right: -80px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  background: rgba(85, 71, 199, 0.12);
}

.home-hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  gap: 62px;
}

.home-hero h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 4.5vw, 4.6rem);
  letter-spacing: -0.055em;
  line-height: 1.01;
  text-transform: none;
}

.home-hero h1 em {
  color: var(--mint);
  font-style: normal;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  list-style: none;
}

.hero-assurance li {
  position: relative;
  padding-left: 17px;
}

.hero-assurance li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.product-preview {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  background: rgba(248, 251, 250, 0.96);
  color: var(--ink);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.preview-topbar,
.preview-brand,
.preview-order header,
.preview-order footer,
.preview-order-line,
.channel-readiness-top,
.home-plan-card > div:first-child {
  display: flex;
  align-items: center;
}

.preview-topbar,
.preview-order header,
.preview-order footer,
.channel-readiness-top,
.home-plan-card > div:first-child {
  justify-content: space-between;
}

.preview-topbar {
  padding: 2px 2px 16px;
}

.preview-brand {
  gap: 10px;
}

.preview-brand > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--mint), #12a08d);
  color: var(--forest-950);
  font-weight: 900;
}

.preview-brand strong,
.preview-brand small,
.preview-metrics span,
.preview-metrics strong,
.preview-order header small,
.preview-order header strong,
.preview-order-line strong,
.preview-order-line small {
  display: block;
}

.preview-brand small {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.preview-live,
.preview-status,
.channel-readiness-top span,
.home-plan-card em {
  border-radius: 999px;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 820;
}

.preview-live {
  padding: 7px 10px;
  background: var(--mint-soft);
  color: var(--forest-700);
}

.preview-live i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--forest-700);
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.preview-metrics article {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.preview-metrics span {
  margin-bottom: 3px;
  color: var(--ink-soft);
  font-size: 0.66rem;
}

.preview-metrics strong {
  font-size: 0.84rem;
}

.preview-order {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}

.preview-order header,
.preview-order footer {
  padding: 14px 16px;
  background: #f3f8f7;
}

.preview-order header small,
.preview-order footer span {
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 750;
}

.preview-order header > span {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--violet-soft);
  color: var(--violet);
  font-size: 0.68rem;
  font-weight: 820;
}

.preview-order-line {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 11px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
}

.preview-product-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  font-weight: 900;
}

.preview-product-icon.teal {
  background: var(--mint-soft);
  color: var(--forest-700);
}

.preview-product-icon.violet {
  background: var(--violet-soft);
  color: var(--violet);
}

.preview-order-line small {
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.preview-status {
  padding: 6px 9px;
  background: var(--paper-deep);
  color: var(--ink-soft);
}

.preview-status.success {
  background: var(--mint-soft);
  color: var(--forest-700);
}

.preview-order footer strong {
  font-size: 0.78rem;
}

.preview-caption {
  display: flex;
  gap: 8px;
  margin: 13px 3px 2px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1.45;
}

.preview-caption span {
  color: var(--forest-700);
  font-weight: 900;
}

.proof-band {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-band-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.proof-band-grid > div {
  min-width: 0;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
}

.proof-band-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.proof-band-grid span,
.proof-band-grid strong,
.proof-band-grid small {
  display: block;
}

.proof-band-grid span {
  margin-bottom: 12px;
  color: var(--forest-700);
  font-size: 0.65rem;
  font-weight: 850;
}

.proof-band-grid strong {
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.proof-band-grid small {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.conversion-problems .section-heading,
.role-section .section-heading,
.channel-trust-section .section-heading,
.home-pricing-section .section-heading {
  max-width: 890px;
}

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

.outcome-card {
  display: grid;
  min-height: 310px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(16, 27, 32, 0.06);
}

.outcome-card > span {
  justify-self: start;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--mint-soft);
  color: var(--forest-700);
  font-size: 0.68rem;
  font-weight: 850;
}

.outcome-card:nth-child(2) > span,
.outcome-card:nth-child(4) > span {
  background: var(--violet-soft);
  color: var(--violet);
}

.outcome-card h2 {
  max-width: 480px;
  margin: 30px 0 12px;
  font-size: 1.65rem;
}

.outcome-card p {
  margin-bottom: 24px;
}

.outcome-card > strong {
  align-self: end;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--forest-700);
  font-size: 0.82rem;
}

.role-section {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 0, rgba(85, 71, 199, 0.2), transparent 26%),
    var(--forest-900);
}

.role-section .eyebrow-dark {
  color: var(--mint);
}

.role-section .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.role-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.role-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.role-card-supplier {
  background: linear-gradient(145deg, rgba(85, 71, 199, 0.18), rgba(255, 255, 255, 0.06));
}

.role-card-heading > span {
  display: inline-flex;
  margin-bottom: 44px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--forest-950);
  font-size: 0.68rem;
  font-weight: 850;
}

.role-card-supplier .role-card-heading > span {
  background: #c8c2ff;
}

.role-card-heading > strong {
  display: block;
  max-width: 470px;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.role-card ul {
  margin: 28px 0;
  list-style: none;
}

.role-card li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.68);
}

.role-card a {
  display: inline-flex;
  gap: 9px;
  color: var(--mint);
  font-weight: 800;
}

.role-card-supplier a {
  color: #c8c2ff;
}

.workflow-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1.2fr);
  gap: 80px;
  align-items: start;
}

.workflow-track {
  margin: 0;
  list-style: none;
}

.workflow-track li {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding-bottom: 28px;
}

.workflow-track li::before {
  position: absolute;
  top: 42px;
  bottom: 2px;
  left: 21px;
  width: 1px;
  background: linear-gradient(var(--forest-700), var(--violet));
  content: "";
}

.workflow-track li:last-child::before {
  display: none;
}

.workflow-track li > span {
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(14, 116, 104, 0.25);
  border-radius: 12px;
  background: var(--white);
  color: var(--forest-700);
  font-size: 0.76rem;
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}

.workflow-track strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 1.05rem;
}

.workflow-track p {
  margin: 0;
}

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

.channel-readiness-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(16, 27, 32, 0.06);
}

.channel-readiness-top {
  gap: 12px;
  margin-bottom: 64px;
}

.channel-readiness-top span {
  padding: 6px 8px;
  text-align: center;
}

.channel-readiness-top .ready {
  background: var(--mint-soft);
  color: var(--forest-700);
}

.channel-readiness-top .pending {
  background: #fff3da;
  color: #8c5a09;
}

.channel-readiness-grid p {
  margin: 0;
  font-size: 0.9rem;
}

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

.home-plan-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(16, 27, 32, 0.06);
}

.home-plan-card.featured {
  border-color: rgba(85, 71, 199, 0.3);
  box-shadow: 0 18px 42px rgba(85, 71, 199, 0.12);
}

.home-plan-card > div:first-child > span {
  color: var(--forest-700);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.home-plan-card em {
  padding: 5px 8px;
  background: var(--violet-soft);
  color: var(--violet);
}

.home-plan-card h2 {
  margin: 34px 0 10px;
  font-size: 1.55rem;
}

.home-plan-card > strong {
  display: block;
  font-size: 1.7rem;
}

.home-plan-card > strong small {
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.home-plan-card p {
  min-height: 90px;
  margin: 18px 0;
  font-size: 0.82rem;
}

.home-plan-card a {
  display: inline-flex;
  gap: 8px;
  color: var(--forest-700);
  font-weight: 800;
}

/* Almadan Kazan marka sistemi: sayfa ve cihaz uyarlamaları. */

@media (max-width: 1080px) {
  .home-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    gap: 34px;
  }

  .home-hero h1 {
    font-size: clamp(2.8rem, 4.5vw, 4.1rem);
  }

  .preview-order-line {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .preview-status {
    grid-column: 2;
    justify-self: start;
  }

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

  .proof-band-grid > div:nth-child(4) {
    border-left: 1px solid var(--line);
  }

  .proof-band-grid > div:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .channel-readiness-top {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 42px;
  }
}

@media (max-width: 900px) {
  .home-hero-grid,
  .workflow-showcase {
    grid-template-columns: 1fr;
    gap: 54px;
  }

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

  .product-preview {
    max-width: 680px;
    margin-inline: auto;
    transform: none;
  }

  .role-card-grid,
  .channel-readiness-grid,
  .home-plan-grid {
    grid-template-columns: 1fr;
  }

  .channel-readiness-grid article {
    min-height: auto;
  }

  .channel-readiness-top {
    align-items: center;
    flex-direction: row;
    margin-bottom: 28px;
  }

  .home-plan-card p {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .home-hero {
    padding: 58px 0 64px;
  }

  .home-hero h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .product-preview {
    padding: 13px;
    border-radius: 17px;
  }

  .preview-metrics {
    grid-template-columns: 1fr;
  }

  .preview-metrics article {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .preview-order-line {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 13px;
  }

  .preview-product-icon {
    width: 34px;
    height: 34px;
  }

  .proof-band-grid,
  .outcome-card-grid,
  .role-card-grid {
    grid-template-columns: 1fr;
  }

  .proof-band-grid > div,
  .proof-band-grid > div:first-child,
  .proof-band-grid > div:nth-child(4) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .proof-band-grid > div + div {
    border-top: 0;
  }

  .outcome-card {
    min-height: auto;
  }

  .role-card {
    padding: 26px;
  }
}

@media (max-width: 520px) {
  .hero-assurance {
    align-items: flex-start;
    flex-direction: column;
  }

  .preview-topbar,
  .preview-order header,
  .preview-order footer,
  .channel-readiness-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .preview-live,
  .preview-order header > span,
  .preview-order footer strong,
  .channel-readiness-top span {
    margin-top: 8px;
  }

  .preview-caption {
    font-size: 0.66rem;
  }

  .channel-readiness-top {
    margin-bottom: 22px;
  }
}
