/* entgr tanıtım sitesi. Kaynak: Codex taslağı (2026-09-27), okunur biçime getirildi;
   kaldırılan bölümlerin (kurulum rehberi, entegrasyon kartları) kuralları ayıklandı. */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;450;500;550;600;650;700&family=Manrope:wght@400;500;600;650;700;750;800&display=swap');

:root {
  --ink: #182238;
  --muted: #606b7f;
  --blue: #3454ec;
  --blue-light: #edf1ff;
  --line: #e2e7ef;
  --paper: #fff;
  --soft: #f6f8fc;
  --radius: 16px;
  --font: 'DM Sans',Arial,sans-serif;
  --heading: 'Manrope',Arial,sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  font-family: var(--font);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #8095ff;
  outline-offset: 5px;
}
input:focus-visible+span {
  outline: 3px solid #8095ff;
  outline-offset: 3px;
}
h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--heading);
  line-height: 1.25;
}
button {
  border: 0;
}
h2 {
  font-size: clamp(2rem,3.3vw,2.9rem);
  font-weight: 750;
  letter-spacing: -1.5px;
}
h3 {
  font-size: 1.3rem;
  letter-spacing: -.5px;
}
p {
  color: var(--muted);
}
[hidden] {
  display: none!important;
}
.wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 30px;
}
.mono {
  font-family: ui-monospace,SFMono-Regular,Consolas,monospace;
  letter-spacing: .08em;
  font-size: .75rem;
}
.eyebrow {
  color: var(--blue);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.5;
  margin-bottom: 23px;
}
.header {
  height: 92px;
  border-bottom: 1px solid var(--line);
  background: #ffffffed;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  font-family: var(--heading);
  font-size: 1.9rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  letter-spacing: -1.5px;
  line-height: 1;
}
.brand-mark {
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
  width: 30px;
  height: 32px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-right: 10px;
  padding-bottom: 4px;
  letter-spacing: -2px;
}
.brand-period {
  color: var(--blue);
}
nav {
  display: flex;
  gap: 30px;
  font-size: .875rem;
  font-weight: 500;
}
nav a:hover {
  color: var(--blue);
}
.button {
  min-height: 52px;
  padding: 13px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  transition: background .2s,transform .2s;
  white-space: nowrap;
}
.button:hover {
  transform: translateY(-2px);
}
.button.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 5px 12px #3454ec18;
}
.button.primary:hover {
  background: #2441ca;
}
.button.dark {
  background: var(--ink);
  color: #fff;
}
.button.small {
  min-height: 43px;
  padding: 9px 18px;
}
.button span {
  font-size: 1.1rem;
}
.hero {
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 90px;
}
.hero .eyebrow {
  font-size: .75rem;
  letter-spacing: .12em;
  display: flex;
  align-items: center;
  gap: 9px;
}
.tiny-branch {
  font-size: 1.1rem;
  letter-spacing: 0;
}
.hero h1 {
  font-size: clamp(2.8rem,4.8vw,4rem);
  line-height: 1.14;
  letter-spacing: -2.7px;
  font-weight: 800;
}
.hero h1>span {
  color: var(--blue);
}
.hero-description {
  font-size: 1.0625rem;
  line-height: 1.85;
  margin-top: 26px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 31px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .875rem;
  font-weight: 600;
}
.text-link:hover {
  color: var(--blue);
}
.play {
  width: 26px;
  height: 26px;
  border: 1px solid #c8cfdd;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .75rem;
  padding-left: 1px;
}
.hero-note {
  font-size: .75rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
  flex-wrap: wrap;
}
.hero-note>span {
  color: var(--blue);
  font-weight: 700;
}
.hero-note i {
  height: 3px;
  width: 3px;
  background: #a0a8b6;
  border-radius: 50%;
  margin: 0 4px;
}
.hero-visual {
  position: relative;
  padding: 20px 33px 29px;
  background-color: #f0f3fd;
  background-image: radial-gradient(#bcc8ec85 .7px,transparent .7px);
  background-size: 15px 15px;
  border: 1px solid #e4eafa;
  border-radius: 20px;
  min-height: 522px;
}
.visual-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6c7eae;
}
.visual-top .mono {
  font-size: .75rem;
}
.visual-plus {
  font-size: 1.3rem;
  line-height: 1;
}
.source-flow {
  height: 85px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  padding-top: 16px;
  position: relative;
}
.source-flow>div {
  display: flex;
  gap: 8px;
  align-items: center;
  background: #fff;
  padding: 6px 12px;
  border: 1px solid #dce3f4;
  box-shadow: 0 2px 3px #2b3e7710;
  border-radius: 7px;
  font-size: .75rem;
  font-weight: 500;
}
.source-flow>span:not(.flow-arrow) {
  color: #96a4c1;
  padding-top: 3px;
}
.source-symbol {
  font-size: 1.1rem;
}
.blue {
  color: var(--blue);
}
.flow-arrow {
  position: absolute;
  bottom: 2px;
  left: 50%;
  color: #8d9ccb;
  font-size: 1.5rem;
  line-height: 1;
}
.mini-report {
  background: white;
  border: 1px solid #dfe5f3;
  border-radius: 11px;
  padding: 24px 25px 16px;
  box-shadow: 0 15px 38px #3442720f;
  transform: rotate(-2deg);
}
.mini-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mini-brand {
  font-family: var(--heading);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -1px;
}
.mini-brand span {
  color: var(--blue);
}
.sample-label {
  font-size: .75rem;
  letter-spacing: .1em;
  color: #77839a;
}
.report-date {
  margin-top: 19px;
  color: #8390a5;
  font-size: .75rem;
}
.mini-report h2 {
  font-size: 1.6rem;
  letter-spacing: -.8px;
  line-height: 1.25;
  margin-top: 7px;
}
.mini-report>p {
  font-size: .76rem;
  line-height: 1.75;
  margin-top: 13px;
}
.mini-metrics {
  display: flex;
  gap: 32px;
  margin: 20px 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}
.mini-metrics strong {
  font-size: 1.55rem;
  line-height: 1.2;
  letter-spacing: -.8px;
  font-family: var(--heading);
  display: block;
}
.mini-metrics span {
  font-size: .75rem;
  color: #7c8799;
  display: block;
  margin-top: 4px;
}
.mini-story {
  display: flex;
  gap: 10px;
  align-items: center;
}
.story-icon {
  background: var(--blue-light);
  color: var(--blue);
  width: 31px;
  height: 33px;
  border-radius: 6px;
  display: grid;
  place-items: center;
}
.mini-story strong {
  font-size: .75rem;
  display: block;
}
.mini-story small {
  font-size: .75rem;
  color: var(--muted);
  display: block;
}
.pill {
  font-size: .75rem;
  margin-left: auto;
  background: #f4f6fb;
  padding: 3px 6px;
  border-radius: 4px;
  color: #6b7790;
}
.evidence-tag {
  position: absolute;
  right: -20px;
  bottom: 37px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: white;
  border: 1px solid #dfe6f3;
  border-radius: 9px;
  padding: 12px 17px;
  box-shadow: 0 8px 25px #1c325217;
  transform: rotate(2deg);
}
.evidence-icon {
  color: #28744b;
  background: #e8f6ef;
  font-size: 1rem;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.evidence-tag strong {
  font-size: .75rem;
  display: block;
}
.evidence-tag div>span {
  font-size: .75rem;
  color: #738096;
  display: block;
}
.visual-caption {
  font-size: .75rem;
  color: #8a97b2;
  margin-top: 22px;
}
.integration-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.integration-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 27px;
  padding-bottom: 27px;
  gap: 35px;
}
.integration-inner>p {
  font-size: .75rem;
  line-height: 1.8;
  min-width: 165px;
}
.integration-inner>p strong {
  font-weight: 500;
  color: var(--ink);
}
.integration-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  flex: 1;
  max-width: 800px;
}
.integration-logos>span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -.5px;
}
.integration-logos b {
  font-size: 1.75rem;
  line-height: 1;
}
.section {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 46px;
}
.section-heading>p {
  max-width: 343px;
  font-size: .95rem;
  padding-bottom: 5px;
}
.section-heading .eyebrow {
  margin-bottom: 19px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
}
.steps-grid article {
  border-top: 1px solid #cfd7e5;
  padding-top: 25px;
}
.step-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 21px;
}
.step-number {
  color: #8691a4;
}
.step-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 9px;
  font-size: 1.5rem;
}
.steps-grid h3 {
  font-size: 1.15rem;
}
.steps-grid p {
  font-size: .925rem;
  line-height: 1.8;
  margin-top: 14px;
}
.step-foot {
  display: block;
  font-size: .75rem;
  color: #8290a4;
  margin-top: 22px;
}
.demo-section {
  padding: 85px 0 58px;
  background: var(--soft);
  border-top: 1px solid #edf0f6;
  border-bottom: 1px solid #edf0f6;
}
.demo-tabs {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 24px;
}
.demo-tabs button {
  padding: 9px 17px;
  background: transparent;
  color: #6a768c;
  font-size: .875rem;
  border-radius: 7px;
  font-weight: 500;
}
.demo-tabs button[aria-selected=true] {
  background: white;
  color: var(--ink);
  box-shadow: 0 2px 6px #263c5710;
}
.demo-tabs>span {
  margin-left: auto;
  color: #8b95a7;
  font-size: .75rem;
}
.product-window {
  display: flex;
  border-radius: 12px;
  border: 1px solid #dfe4ee;
  box-shadow: 0 12px 35px #23355409;
  overflow: hidden;
  background: #fff;
  min-height: 430px;
}
.product-rail {
  width: 58px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 25px;
  background: #182139;
  color: #96a2bc;
  padding: 22px 0;
  font-size: 1.2rem;
}
.rail-logo {
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.rail-active {
  background: #3454ec;
  color: #fff;
  padding: 0 8px;
  border-radius: 6px;
}
.rail-bottom {
  margin-top: auto;
}
.product-main {
  flex: 1;
  min-width: 0;
  padding: 0 28px 28px;
  background: #fbfcfe;
}
.product-bar {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #e8ecf3;
  margin-bottom: 24px;
}
.product-bar strong {
  font-size: .9rem;
}
.product-bar>span:not(.example-badge) {
  font-size: .75rem;
  color: #69778e;
  margin-left: auto;
  background: white;
  border: 1px solid #e3e8f0;
  padding: 5px 10px;
  border-radius: 5px;
  display: flex;
  gap: 13px;
}
.example-badge {
  font-size: .75rem;
  color: #8b95a6;
}
.demo-panel {
  display: grid;
  grid-template-columns: .8fr 1.4fr;
  gap: 20px;
  min-height: 296px;
}
.overview-card {
  background: var(--blue);
  border-radius: 9px;
  padding: 25px 24px;
  display: flex;
  flex-direction: column;
  color: #fff;
}
.overview-card>.mono {
  color: #c4d0ff;
  font-size: .75rem;
  margin-bottom: 23px;
}
.overview-card h3 {
  font-size: 1.5rem;
  line-height: 1.32;
  letter-spacing: -.7px;
}
.overview-card p {
  font-size: .8rem;
  line-height: 1.75;
  color: #dce3ff;
  margin-top: 16px;
}
.overview-bottom {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  border-top: 1px solid #ffffff30;
  margin-top: auto;
  padding-top: 16px;
  font-size: .75rem;
  color: #e5eaff;
}
.delivery-card {
  background: #fff;
  border: 1px solid #e7ebf2;
  border-radius: 9px;
  padding: 19px 23px;
}
.card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 10px;
}
.card-title h4 {
  font-size: .85rem;
}
.card-title>span {
  font-size: .75rem;
  color: #8993a7;
}
.delivery-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid #eef1f6;
}
.delivery-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.theme-number {
  font-family: ui-monospace,monospace;
  color: #8d9abb;
  font-size: .75rem;
  padding-top: 1px;
}
.delivery-row h5 {
  font-family: var(--font);
  font-size: .83rem;
  font-weight: 600;
}
.delivery-row p {
  font-size: .75rem;
  margin-top: 4px;
}
.delivery-row small {
  font-size: .75rem;
  display: block;
  color: #929bac;
  margin-top: 5px;
}
.row-count {
  white-space: nowrap;
  margin-left: auto;
  color: #8b96aa;
  font-size: .75rem;
}
.demo-caption {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 25px;
  color: #7b879b;
  font-size: .75rem;
}
.demo-caption b {
  font-weight: 400;
  color: #587a69;
  margin-right: 6px;
}
.sprint-track {
  padding: 13px 0;
}
.sprint-track>div:first-child {
  display: flex;
  align-items: center;
  gap: 13px;
}
.sprint-track strong {
  font-size: 1.7rem;
  letter-spacing: -1px;
}
.sprint-track span,
.sprint-track p {
  font-size: .75rem;
  color: #7a879d;
}
.progress-track {
  height: 7px;
  background: #edf1f8;
  border-radius: 10px;
  margin: 12px 0;
  overflow: hidden;
}
.progress-track span {
  display: block;
  width: 66.66%;
  height: 100%;
  background: var(--blue);
}
.notice {
  display: flex;
  gap: 10px;
  background: #fff9ec;
  padding: 12px;
  border-radius: 7px;
  font-size: .75rem;
  margin-top: 7px;
  color: #8a6323;
}
.notice p {
  font-size: .75rem;
  color: #8c7754;
  margin-top: 3px;
}
.team-note {
  font-size: .75rem;
  color: #8b95a8;
  margin-top: 13px;
}
.faq-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 78px 0;
  background: #fafbfe;
}
.faq-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
}
.faq-layout h2 {
  font-size: 2.2rem;
}
.faq-list details {
  border-bottom: 1px solid #e3e8f0;
  padding: 20px 0;
}
.faq-list details:first-child {
  padding-top: 0;
}
.faq-list details:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.faq-list summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  font-size: .95rem;
  font-weight: 500;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary>span {
  color: #8996ad;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.2;
}
.faq-list details[open] summary>span {
  transform: rotate(45deg);
}
.faq-list details>p {
  font-size: .875rem;
  line-height: 1.8;
  margin-top: 13px;
  padding-right: 35px;
}
.closing {
  padding-top: 75px;
  padding-bottom: 75px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.closing h2 {
  font-size: 2.55rem;
}
.closing .eyebrow {
  display: block;
  margin-bottom: 17px;
  font-size: .75rem;
}
footer {
  border-top: 1px solid var(--line);
}
.footer-inner {
  min-height: 100px;
  display: flex;
  align-items: center;
  gap: 35px;
}
.footer-inner .brand {
  font-size: 1.5rem;
}
.footer-inner .brand-mark {
  height: 25px;
  width: 25px;
  font-size: 1.3rem;
  border-radius: 6px;
}
.footer-inner>span {
  font-size: .75rem;
  color: #8b95a6;
}
.footer-inner>a:last-child {
  margin-left: auto;
  font-size: .75rem;
  color: #6e7b93;
}
.skip {
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
}
.skip:focus {
  top: 12px;
}
@media (min-width:1500px) {
  .hero {
    padding-top: 105px;
    padding-bottom: 110px;
  }
}
@media (max-width:1100px) {
  .hero {
    gap: 30px;
  }
  .hero h1 {
    font-size: 3.2rem;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }
  .hero-visual {
    padding-left: 22px;
    padding-right: 22px;
  }
  .hero .eyebrow {
    font-size: .75rem;
  }
  .integration-logos {
    gap: 30px;
  }
  .onboarding,
  .faq-layout {
    gap: 50px;
  }
  .demo-panel {
    grid-template-columns: 1fr 1.35fr;
  }
  .overview-card h3 {
    font-size: 1.3rem;
  }
  .overview-bottom {
    margin-top: 20px;
  }
  .delivery-card {
    padding: 19px 17px;
  }
  .evidence-tag {
    right: -7px;
  }
  .mini-metrics {
    gap: 26px;
  }
  .nav {
    gap: 20px;
  }
  nav {
    gap: 20px;
  }
  .hero-note {
    font-size: .75rem;
  }
}
@media (max-width:800px) {
  .wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
  .header {
    height: 76px;
  }
  .nav nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 50px;
    padding-bottom: 55px;
  }
  .hero-copy {
    max-width: 600px;
  }
  .hero h1 {
    font-size: 3.6rem;
  }
  .hero .eyebrow {
    font-size: .75rem;
  }
  .hero-description {
    max-width: 540px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }
  .hero-visual {
    width: 100%;
    max-width: 490px;
    justify-self: center;
  }
  .hero-note {
    font-size: .75rem;
  }
  .integration-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding-top: 22px;
    padding-bottom: 24px;
  }
  .integration-inner>p br {
    display: none;
  }
  .integration-inner>p strong {
    margin-left: 5px;
  }
  .integration-logos {
    width: 100%;
    gap: 20px;
  }
  .integration-logos>span {
    font-size: 1rem;
  }
  .section {
    padding-top: 66px;
    padding-bottom: 66px;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 35px;
  }
  .section-heading>p {
    max-width: 500px;
  }
  .steps-grid {
    gap: 20px;
  }
  .steps-grid h3 {
    font-size: 1rem;
  }
  .steps-grid p {
    font-size: .85rem;
  }
  .step-foot {
    font-size: .75rem;
  }
  .demo-section {
    padding: 60px 0 38px;
  }
  .demo-tabs>span {
    display: none;
  }
  .product-main {
    padding: 0 17px 17px;
  }
  .product-rail {
    width: 43px;
  }
  .demo-panel {
    grid-template-columns: 1fr;
  }
  .overview-card {
    padding: 22px;
  }
  .overview-card h3 br {
    display: none;
  }
  .overview-card>.mono {
    margin-bottom: 12px;
  }
  .overview-card p {
    max-width: 430px;
  }
  .overview-bottom {
    margin-top: 18px;
  }
  .demo-caption {
    gap: 18px;
    font-size: .75rem;
    flex-wrap: wrap;
  }
  .onboarding,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .faq-section {
    padding: 60px 0;
  }
  .closing {
    padding-top: 55px;
    padding-bottom: 55px;
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }
  .closing h2 {
    font-size: 2.2rem;
  }
  .footer-inner {
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .footer-inner>span {
    font-size: .75rem;
  }
  .faq-layout h2 {
    font-size: 2rem;
  }
}
@media (max-width:480px) {
  .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  .nav .button {
    padding: 8px 13px;
    font-size: .75rem;
    gap: 13px;
  }
  .brand {
    font-size: 1.65rem;
  }
  .hero {
    padding-top: 39px;
  }
  .hero h1 {
    font-size: 2.75rem;
    letter-spacing: -1.7px;
  }
  .hero-description {
    font-size: 1rem;
    line-height: 1.8;
  }
  .hero .eyebrow {
    font-size: .75rem;
    letter-spacing: .08em;
    gap: 6px;
    margin-bottom: 20px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .hero-note {
    font-size: .75rem;
    gap: 6px;
  }
  .hero-visual {
    min-height: 490px;
    padding: 17px 18px 32px;
  }
  .visual-top .mono {
    font-size: .75rem;
  }
  .source-flow {
    height: 80px;
    gap: 8px;
  }
  .mini-report {
    padding: 20px 18px 17px;
  }
  .mini-report h2 {
    font-size: 1.4rem;
  }
  .mini-report>p {
    font-size: .75rem;
  }
  .mini-metrics {
    gap: 25px;
  }
  .evidence-tag {
    right: -5px;
    bottom: 20px;
    padding: 10px 12px;
  }
  .visual-caption {
    font-size: .75rem;
    margin-top: 17px;
  }
  .evidence-tag strong {
    font-size: .75rem;
  }
  .evidence-tag div>span {
    font-size: .75rem;
  }
  .integration-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
  }
  .integration-logos>span {
    font-size: 1rem;
  }
  .integration-inner>p {
    font-size: .75rem;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .steps-grid article {
    padding-top: 16px;
  }
  .step-top {
    margin-bottom: 14px;
  }
  .steps-grid h3 {
    font-size: 1.1rem;
  }
  .steps-grid p {
    font-size: .925rem;
    margin-top: 10px;
  }
  .step-foot {
    font-size: .75rem;
    margin-top: 15px;
  }
  h2 {
    font-size: 2rem;
    letter-spacing: -1px;
  }
  .eyebrow {
    font-size: .75rem;
  }
  .demo-tabs {
    gap: 0;
  }
  .demo-tabs button {
    font-size: .75rem;
    padding: 9px 10px;
  }
  .product-rail {
    display: none;
  }
  .product-main {
    padding: 0 14px 14px;
  }
  .product-bar {
    gap: 7px;
    height: 65px;
  }
  .product-bar strong {
    font-size: .75rem;
  }
  .product-bar>span:not(.example-badge) {
    font-size: .75rem;
    padding: 4px 7px;
  }
  .example-badge {
    font-size: .75rem;
  }
  .delivery-card {
    padding: 16px 14px;
  }
  .delivery-row {
    gap: 9px;
  }
  .delivery-row h5 {
    font-size: .8rem;
  }
  .delivery-row p {
    font-size: .75rem;
  }
  .row-count {
    font-size: .75rem;
  }
  .demo-caption {
    justify-content: flex-start;
    gap: 9px 18px;
    font-size: .75rem;
  }
  .faq-list summary {
    font-size: .9rem;
  }
  .footer-inner {
    justify-content: space-between;
    gap: 20px;
  }
  .footer-inner>span {
    order: 3;
    width: 100%;
    font-size: .75rem;
  }
  .closing h2 {
    font-size: 1.9rem;
  }
}
@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none!important;
    animation: none!important;
  }
}
/* Readable product copy at every viewport. */.step-foot,
.hero-note,
.demo-caption,
.guide-tabs button,
.provider-choices label>span,
.requirements strong,
.provider-tip,
.muted,
.text-link,
.back-button,
.optional-block h4,
.launch-list strong {
  font-size: .875rem;
}
.steps-grid p,
.section-heading>p,
.onboarding-intro>p,
.requirements p,
.optional-block p,
.launch-list p,
.faq-list details>p {
  font-size: 1rem;
}
.mini-report>p,
.delivery-row p,
.delivery-row h5,
.overview-card p,
.card-title h4,
.sprint-track p,
.sprint-track span,
.notice p,
.team-note {
  font-size: .875rem;
}
.mini-story small,
.mini-story strong,
.mini-metrics span,
.delivery-row small,
.row-count,
.sample-label,
.report-date,
.overview-bottom {
  font-size: .75rem;
}
.mini-report h2 {
  font-size: 1.5rem;
}
.hero-visual {
  padding-bottom: 50px;
}
.evidence-tag {
  bottom: 24px;
}
.visual-caption {
  margin-top: 30px;
}
.hero .eyebrow {
  font-size: .75rem;
  letter-spacing: .05em;
}
.hero-visual .visual-top .mono {
  font-size: .75rem;
  letter-spacing: .025em;
}
.overview-card>.mono {
  font-size: .75rem;
}
.source-flow>div {
  font-size: .875rem;
}
@media (max-width:480px) {
  .hero h1 {
    font-size: 2.65rem;
  }
  .hero-note {
    font-size: .75rem;
  }
  .hero .eyebrow {
    font-size: .75rem;
    flex-wrap: wrap;
  }
  .visual-top .mono {
    max-width: 230px;
  }
  .visual-caption {
    font-size: .75rem;
    line-height: 1.7;
    max-width: 210px;
  }
  .mini-metrics {
    gap: 20px;
  }
  .demo-caption {
    font-size: .75rem;
  }
  .demo-tabs button {
    font-size: .875rem;
    padding: 9px 7px;
  }
  .overview-card h3 {
    font-size: 1.4rem;
  }
  .delivery-row {
    flex-wrap: wrap;
  }
  .row-count {
    display: none;
  }
}
/* Integration roadmap and provider preparation. */.integration-logos {
  gap: 35px;
}
.nav nav {
  gap: 22px;
}
@media (max-width:1100px) {
  .nav nav {
    gap: 15px;
    font-size: .8rem;
  }
  .nav {
    gap: 15px;
  }
}
@media (max-width:600px) {
  .integration-logos {
    gap: 20px;
  }
}
/* Brand-owned logo shapes from Devicon / Simple Icons,
replacing placeholders. */.brand-icon {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}
.integration-logos .brand-icon {
  width: 28px;
  height: 28px;
}
.source-symbol .brand-icon,
.optional-icon .brand-icon {
  width: 19px;
  height: 19px;
}
@media (max-width:480px) {
  .integration-logos .brand-icon {
    width: 26px;
    height: 26px;
  }
}

/* ---------------------------------------------------------------- sonradan eklenenler (2026-09-27) */

.proof {
  padding-top: 34px;
  padding-bottom: 34px;
  text-align: center;
}
.proof p {
  font-size: 1rem;
}
.proof strong {
  color: var(--ink);
  font-family: var(--heading);
}

.audience-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.audience-grid article,
.trust-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  background: var(--paper);
}
.audience-grid h3,
.trust-grid h3 {
  font-size: 1.05rem;
}
.audience-grid p,
.trust-grid p {
  font-size: .9rem;
  line-height: 1.75;
  margin-top: 12px;
}
.trust {
  background: var(--soft);
  max-width: none;
  padding-left: max(30px, calc((100% - 1160px) / 2));
  padding-right: max(30px, calc((100% - 1160px) / 2));
}
.trust-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.integrations-compact {
  padding-bottom: 60px;
}
.integration-rows {
  display: grid;
  gap: 14px;
}
.integration-rows > div {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  color: var(--ink);
  font-weight: 500;
}

.pilot {
  background: var(--ink);
  color: #fff;
  padding: 96px 0;
}
.pilot h2 {
  color: #fff;
  max-width: 620px;
}
.pilot .eyebrow {
  color: #9fb0ff;
}
.pilot p {
  color: #c3cad8;
}
.pilot-layout {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 70px;
  align-items: start;
}
.pilot-lede {
  margin-top: 20px;
  max-width: 560px;
}
.pilot-steps {
  margin: 32px 0 0;
  padding-left: 22px;
  display: grid;
  gap: 14px;
  color: #c3cad8;
  max-width: 600px;
}
.pilot-steps strong {
  color: #fff;
}
.pilot-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.pilot-actions .text-link {
  color: #dfe5ff;
}
.pilot-card {
  border: 1px solid #ffffff26;
  border-radius: var(--radius);
  padding: 30px 28px;
  background: #ffffff0d;
}
.pilot-card h3 {
  color: #fff;
  font-size: 1.1rem;
}
.pilot-card ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  display: grid;
  gap: 12px;
  color: #e6eaf2;
  font-size: .925rem;
}
.pilot-card li span {
  color: #7ee2a8;
  margin-right: 8px;
}
.pilot-card p {
  font-size: .85rem;
}

.footer-links {
  margin-left: auto;
  display: flex;
  gap: 24px;
  font-size: .75rem;
  color: #6e7b93;
}
.footer-links a:hover {
  color: var(--blue);
}
.footer-legal {
  padding-bottom: 28px;
  font-size: .72rem;
  color: #8b95a6;
}

/* Gizlilik ve KVKK sayfası */
.legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 70px 30px 90px;
}
.legal h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  letter-spacing: -1px;
}
.legal h2 {
  font-size: 1.25rem;
  letter-spacing: -.3px;
  margin-top: 38px;
}
.legal p,
.legal li {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--muted);
}
.legal p {
  margin-top: 12px;
}
.legal ul {
  padding-left: 20px;
}
.legal .updated {
  font-size: .8rem;
  margin-top: 10px;
}
.legal a {
  color: var(--blue);
}

@media (max-width: 1100px) {
  .audience-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pilot-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .audience-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .pilot {
    padding: 70px 0;
  }
  .footer-links {
    margin-left: 0;
  }
}
.legal .brand + h1 {
  margin-top: 40px;
}
