:root {
  --ink: #f8efd9;
  --muted: #c8ad7b;
  --dim: #8e795b;
  --void: #0d0908;
  --panel: #1d1412;
  --panel-2: #2b1c17;
  --ember: #d53a24;
  --ember-2: #8d1d16;
  --gold: #d9a644;
  --gold-soft: #f4d484;
  --bone: #fff4cf;
  --line: rgba(217, 166, 68, 0.38);
  --shadow: rgba(0, 0, 0, 0.48);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 10%, rgba(213, 58, 36, 0.18), transparent 32rem),
    radial-gradient(circle at 85% 18%, rgba(217, 166, 68, 0.12), transparent 28rem),
    linear-gradient(135deg, #090707 0%, #16100e 42%, #0c0807 100%);
  font-family: Sora, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  z-index: 5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  mix-blend-mode: overlay;
}

.torch {
  position: fixed;
  top: 4rem;
  width: 22rem;
  height: 48rem;
  pointer-events: none;
  z-index: 0;
  filter: blur(28px);
  opacity: 0.5;
}

.torch-left {
  left: -14rem;
  background: radial-gradient(ellipse, rgba(213, 58, 36, 0.6), transparent 65%);
}

.torch-right {
  right: -15rem;
  background: radial-gradient(ellipse, rgba(217, 166, 68, 0.35), transparent 65%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px;
  border: 1px solid rgba(217, 166, 68, 0.24);
  border-radius: 999px;
  background: rgba(14, 10, 9, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 6px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 14px;
  color: var(--bone);
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.3), transparent 18%),
    linear-gradient(145deg, #571611, #b62a1e 55%, #2a130d);
  font-family: Cinzel, serif;
  font-weight: 800;
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.36), 0 0 22px rgba(213, 58, 36, 0.2);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Cinzel, serif;
  letter-spacing: 0.04em;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
  margin-top: 2px;
}

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

.nav a,
.nav-cta {
  padding: 12px 14px;
  border-radius: 999px;
  color: #ead8ad;
  font-size: 0.88rem;
  transition: 180ms ease;
}

.nav a:hover {
  color: var(--bone);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  color: #190d08;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(217, 166, 68, 0.2);
}

.section-shell {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: 70px 0 48px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(217, 166, 68, 0.28);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(217, 166, 68, 0.08);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
.section-heading h2,
.cta-content h2 {
  font-family: Fraunces, Georgia, serif;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.75rem, 4.8vw, 4.9rem);
  letter-spacing: -0.02em;
}

.lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: #dfcda9;
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 16px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  color: #1c0f09;
  background: linear-gradient(135deg, #fff0b0, var(--gold) 62%, #aa6e1d);
  box-shadow: 0 16px 48px rgba(217, 166, 68, 0.22);
}

.button.ghost {
  border: 1px solid rgba(248, 239, 217, 0.22);
  color: #f3dec0;
  background: rgba(255, 255, 255, 0.045);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #bfa779;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.78rem;
}

.hero-visual {
  perspective: 1200px;
}

.obs-frame {
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(217, 166, 68, 0.32);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(20, 15, 14, 0.92), rgba(48, 29, 20, 0.82)),
    radial-gradient(circle at 50% 30%, rgba(213, 58, 36, 0.15), transparent 35rem);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: rotateX(2deg) rotateY(-5deg);
}

.obs-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 0 0 18px;
  min-height: 42px;
  border-bottom: 1px solid rgba(217, 166, 68, 0.18);
  background:
    linear-gradient(180deg, rgba(38, 25, 20, 0.94), rgba(18, 12, 10, 0.94)),
    rgba(0, 0, 0, 0.2);
}

.obs-topbar strong {
  margin-left: 0;
  color: #907856;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.window-controls {
  display: flex;
  align-self: stretch;
  margin-left: auto;
}

.window-controls span {
  position: relative;
  display: block;
  width: 46px;
  border-left: 1px solid rgba(217, 166, 68, 0.1);
}

.window-controls span::before,
.window-controls span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.window-controls .minimize::before {
  width: 13px;
  height: 1px;
  background: rgba(248, 239, 217, 0.62);
}

.window-controls .maximize::before {
  width: 12px;
  height: 10px;
  border: 1px solid rgba(248, 239, 217, 0.58);
}

.window-controls .close {
  background: rgba(213, 58, 36, 0.1);
}

.window-controls .close::before,
.window-controls .close::after {
  width: 14px;
  height: 1px;
  background: rgba(248, 239, 217, 0.76);
}

.window-controls .close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.window-controls .close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.scene-grid {
  position: relative;
  display: grid;
  min-height: 512px;
  place-items: center;
  padding: 28px;
  background-image:
    linear-gradient(rgba(217, 166, 68, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 166, 68, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
}

.scene-grid::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px dashed rgba(217, 166, 68, 0.18);
  border-radius: 28px;
}

.roll-card {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  gap: 20px;
  align-items: center;
  width: min(100%, 760px);
  padding: 24px 26px;
  border: 2px solid rgba(217, 166, 68, 0.78);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 244, 207, 0.04), transparent 28%),
    linear-gradient(180deg, #241a18, #17100f);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.46), inset 0 0 0 1px rgba(255, 244, 207, 0.06);
  animation: cardSummon 4.8s ease-in-out infinite;
}

.roll-card::before {
  content: "";
  position: absolute;
  inset: 7px;
  pointer-events: none;
  border: 1px solid rgba(217, 166, 68, 0.28);
  border-radius: 17px;
}

.roll-card em {
  position: absolute;
  right: 22px;
  bottom: 12px;
  color: rgba(217, 166, 68, 0.72);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
}

.die-wrap {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.die-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 25px;
  width: 76px;
  height: 19px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  filter: blur(1px);
  transform: translateX(-50%);
  z-index: 0;
}

.die-wrap small {
  color: var(--gold-soft);
  font-weight: 800;
}

.die {
  position: relative;
  z-index: 1;
  width: 118px;
  height: 104px;
  filter: drop-shadow(0 8px 6px rgba(0, 0, 0, 0.5));
  animation: dieFloat 2.8s ease-in-out infinite;
}

.d20 {
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.die-svg {
  display: block;
  width: 118px;
  height: 104px;
  overflow: visible;
}

.die-outline,
.die-face-line {
  fill: rgba(45, 8, 7, 0.06);
  stroke: #ef2f27;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.die-outline {
  stroke-width: 2.4;
}

.die-face-line {
  fill: none;
  stroke-width: 1.9;
  opacity: 0.92;
}

.die-face-line.soft {
  opacity: 0.62;
}

.die-main,
.die-small {
  fill: #ef2f27;
  font-family: Sora, "Segoe UI", sans-serif;
  font-weight: 900;
  paint-order: stroke;
  stroke: #190404;
  text-anchor: middle;
  text-shadow: 0 0 9px rgba(239, 47, 39, 0.3);
}

.die-main {
  font-size: 31px;
  stroke-width: 2px;
  dominant-baseline: middle;
}

.die-small {
  font-size: 14px;
  stroke-width: 1.2px;
}

.roll-copy .character {
  color: var(--gold-soft);
  font-weight: 900;
}

.roll-copy h2 {
  margin-top: 8px;
  color: #fff6d5;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
  text-shadow: 3px 3px 0 #030201;
}

.roll-copy p {
  margin: 15px 0 0;
  color: #f7e8c8;
  font-size: 1.08rem;
  font-weight: 800;
}

.total {
  display: grid;
  min-height: 132px;
  place-items: center;
  border-left: 1px solid rgba(217, 166, 68, 0.55);
}

.total span {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.total strong {
  margin-top: -12px;
  color: #fff4cf;
  font-family: Fraunces, Georgia, serif;
  font-size: 4.7rem;
  line-height: 0.82;
  text-shadow: 4px 5px 0 #050302;
}

.split-panel,
.process,
.plugin-details,
.faq,
.cta-panel {
  padding: 94px 0;
}

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

.section-heading h2,
.cta-content h2 {
  font-size: clamp(2.15rem, 4.2vw, 4.25rem);
  letter-spacing: -0.025em;
}

.section-heading p:not(.eyebrow),
.cta-content p {
  color: #d8c5a3;
  font-size: 1.02rem;
  line-height: 1.8;
}

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

.feature-card,
.product-card,
.showcase-card,
.faq details,
.contact-card {
  border: 1px solid rgba(217, 166, 68, 0.2);
  background:
    linear-gradient(160deg, rgba(255, 244, 207, 0.045), transparent 34%),
    rgba(29, 20, 18, 0.78);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

.feature-card,
.product-card {
  min-height: 240px;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.feature-card .icon,
.product-card .icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(217, 166, 68, 0.44);
  border-radius: 14px;
  color: var(--gold-soft);
  font-weight: 900;
}

.feature-card h3,
.product-card h3,
.timeline h3 {
  margin-top: 24px;
  color: #fff0cf;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
}

.feature-card p,
.product-card p,
.timeline p,
.faq p,
.showcase-card p {
  color: #cdbb9b;
  line-height: 1.65;
}

.wide-showcase {
  position: relative;
  overflow: hidden;
  padding: 38px 0;
  border-top: 1px solid rgba(217, 166, 68, 0.18);
  border-bottom: 1px solid rgba(217, 166, 68, 0.18);
  background:
    radial-gradient(circle at 10% 20%, rgba(213, 58, 36, 0.14), transparent 22rem),
    linear-gradient(90deg, rgba(32, 18, 14, 0.78), rgba(13, 9, 8, 0.4));
}

.showcase-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.showcase-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.showcase-card .label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.showcase-card strong {
  display: block;
  margin-top: 10px;
  color: var(--gold-soft);
  font-family: Fraunces, Georgia, serif;
  font-size: 2rem;
}

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

.timeline li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px;
  border: 1px solid rgba(217, 166, 68, 0.22);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.035);
}

.timeline span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 18px;
  color: #1d0d06;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  font-weight: 900;
}

.timeline h3 {
  margin-top: 0;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 30px;
  border-radius: var(--radius-xl);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 20px 24px;
  border-radius: var(--radius-md);
}

.faq summary {
  cursor: pointer;
  color: #fff0cf;
  font-weight: 900;
}

.faq p {
  margin-bottom: 0;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 26px;
  align-items: stretch;
}

.cta-content,
.contact-card {
  border-radius: var(--radius-xl);
}

.cta-content {
  padding: 40px;
  background:
    radial-gradient(circle at 20% 0%, rgba(217, 166, 68, 0.22), transparent 20rem),
    linear-gradient(135deg, #2b1711, #140e0d);
  border: 1px solid rgba(217, 166, 68, 0.26);
}

.contact-card {
  display: grid;
  gap: 12px;
  align-content: center;
  padding: 28px;
}

.contact-link {
  display: block;
  padding: 15px 16px;
  border: 1px solid rgba(217, 166, 68, 0.24);
  border-radius: 16px;
  color: #ead8ad;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.contact-link:hover {
  transform: translateX(4px);
  background: rgba(217, 166, 68, 0.08);
}

.contact-link.strong {
  min-height: 64px;
  align-content: center;
  color: #1b0f08;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  font-size: 1.06rem;
  box-shadow: 0 16px 36px rgba(217, 166, 68, 0.22);
}

.inline-helper-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-soft);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(217, 166, 68, 0.45);
  text-underline-offset: 5px;
}

.small-note {
  margin: 8px 0 0;
  color: var(--dim);
  font-size: 0.82rem;
  line-height: 1.55;
}

.helper-hero {
  padding: 92px 0 34px;
}

.helper-hero h1 {
  max-width: 920px;
}

.helper-warning,
.auto-capture-card,
.helper-card,
.helper-output {
  border: 1px solid rgba(217, 166, 68, 0.2);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(255, 244, 207, 0.045), transparent 34%),
    rgba(29, 20, 18, 0.78);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

.helper-warning {
  padding: 28px;
  margin-bottom: 22px;
}

.auto-capture-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 22px;
  align-items: center;
  padding: 30px;
  margin-bottom: 22px;
}

.helper-warning h2,
.auto-capture-card h2,
.helper-card h2,
.helper-output h2 {
  color: #fff0cf;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  letter-spacing: -0.01em;
}

.helper-warning p,
.auto-capture-card p,
.helper-card p,
.helper-steps,
.helper-output p {
  color: #cdbb9b;
  line-height: 1.7;
}

.bookmarklet-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  padding: 0 22px;
  border: 1px solid rgba(217, 166, 68, 0.55);
  border-radius: 20px;
  color: #1b0f08;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  font-weight: 900;
  text-align: center;
  box-shadow: 0 16px 36px rgba(217, 166, 68, 0.22);
  cursor: grab;
}

.helper-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 0.82fr;
  gap: 18px;
  align-items: stretch;
  padding: 0 0 30px;
}

.helper-card {
  padding: 28px;
}

.helper-card label,
.label-row label {
  display: block;
  margin: 18px 0 8px;
  color: var(--gold-soft);
  font-weight: 900;
}

.label-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.helper-card input,
.helper-card textarea,
.helper-output textarea {
  width: 100%;
  border: 1px solid rgba(217, 166, 68, 0.26);
  border-radius: 16px;
  outline: none;
  color: var(--ink);
  background: rgba(8, 6, 5, 0.55);
  font: inherit;
  padding: 14px 15px;
  resize: vertical;
}

.helper-card input:focus,
.helper-card textarea:focus,
.helper-output textarea:focus {
  border-color: rgba(244, 212, 132, 0.72);
  box-shadow: 0 0 0 3px rgba(217, 166, 68, 0.12);
}

.copy-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.button.mini {
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(248, 239, 217, 0.22);
}

.helper-actions-inline {
  margin-top: 20px;
}

.helper-capture-button {
  margin-top: 12px;
}

.helper-card input[readonly] {
  cursor: not-allowed;
  opacity: 0.82;
  pointer-events: none;
}

.helper-card textarea::placeholder,
.helper-card input::placeholder {
  color: rgba(200, 173, 123, 0.5);
}

.helper-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.helper-actions .button {
  border: 0;
  cursor: pointer;
}

.text-button {
  border: 0;
  color: var(--gold-soft);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0 0 8px;
}

.field-note {
  margin-top: 10px;
  font-size: 0.86rem;
}

.field-tag {
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(213, 58, 36, 0.18);
  color: #ffb9a8;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: middle;
}

.helper-steps {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.helper-steps-manual {
  margin-top: 10px;
  border-top: 1px dashed rgba(217, 166, 68, 0.26);
  padding-top: 12px;
}

.helper-steps code {
  color: var(--gold-soft);
  background: rgba(0, 0, 0, 0.22);
  border-radius: 6px;
  padding: 2px 5px;
}

.helper-output {
  padding: 30px;
  margin-bottom: 70px;
}

.helper-output textarea {
  min-height: 230px;
}

/* === Yeni yardımcı akış tasarımı === */
.helper-flow {
  display: grid;
  gap: 20px;
  padding-bottom: 80px;
}

.ext-status {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(43, 28, 23, 0.66), rgba(13, 9, 8, 0.6));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  transition: border-color 220ms ease, background 220ms ease;
}

.ext-dot {
  flex: none;
  width: 14px;
  height: 14px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--dim);
  box-shadow: 0 0 0 4px rgba(142, 121, 91, 0.18);
}

.ext-status-body {
  flex: 1;
  min-width: 0;
}

.ext-status-body strong {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.32rem;
  letter-spacing: -0.01em;
}

.ext-status-body p {
  margin: 8px 0 0;
  color: #dcc8a4;
  line-height: 1.6;
}

/* durum görünürlüğü */
.ext-view {
  display: none;
}

.ext-status[data-state="checking"] .ext-view-checking,
.ext-status[data-state="ready"] .ext-view-ready,
.ext-status[data-state="missing"] .ext-view-missing {
  display: block;
}

.ext-status[data-state="ready"] {
  border-color: rgba(116, 196, 122, 0.5);
  background: linear-gradient(160deg, rgba(33, 64, 41, 0.5), rgba(13, 18, 12, 0.6));
}

.ext-status[data-state="ready"] .ext-dot {
  background: #6fdc82;
  box-shadow: 0 0 0 4px rgba(111, 220, 130, 0.18);
}

.ext-status[data-state="missing"] {
  border-color: rgba(217, 166, 68, 0.5);
}

.ext-status[data-state="missing"] .ext-dot {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(217, 166, 68, 0.2);
}

.ext-status[data-state="checking"] .ext-dot {
  animation: ext-pulse 1.1s ease-in-out infinite;
}

@keyframes ext-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.ok-check {
  color: #6fdc82;
}

.ext-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.ext-actions .button {
  min-height: 48px;
  border: 0;
  cursor: pointer;
}

.ext-actions .button.ghost {
  border: 1px solid rgba(248, 239, 217, 0.22);
}

.ext-steps {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 20px;
  color: #dcc8a4;
  line-height: 1.55;
}

.ext-steps code,
.remove-note code {
  color: var(--gold-soft);
  background: rgba(0, 0, 0, 0.28);
  border-radius: 6px;
  padding: 2px 6px;
}

.ext-manual-test {
  margin-top: 14px;
  border: 1px dashed rgba(217, 166, 68, 0.34);
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.2);
  padding: 11px 14px;
}

.ext-manual-test summary {
  cursor: pointer;
  color: #f1d79a;
  font-weight: 700;
  list-style: none;
}

.ext-manual-test summary::-webkit-details-marker {
  display: none;
}

.ext-manual-test summary::before {
  content: "+";
  display: inline-block;
  margin-right: 8px;
  color: var(--gold-soft);
}

.ext-manual-test[open] summary::before {
  content: "-";
}

.ext-manual-test .ext-steps {
  margin-top: 12px;
}

.remove-note {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px dashed rgba(217, 166, 68, 0.34);
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.22);
}

.remove-note p {
  margin: 0;
  color: #e7d6b4;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* sonuç kartı */
.result-card {
  padding: 28px 30px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(165deg, rgba(43, 28, 23, 0.62), rgba(13, 9, 8, 0.58));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
}

.result-head h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.6rem;
}

.result-head p {
  margin: 8px 0 0;
  color: #cdb78d;
  line-height: 1.6;
}

.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  margin-top: 22px;
}

.field {
  display: flex;
  flex-direction: column;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label {
  margin: 0 0 8px;
  color: var(--gold-soft);
  font-weight: 800;
  font-size: 0.92rem;
}

.result-card input,
.result-card textarea {
  width: 100%;
  border: 1px solid rgba(217, 166, 68, 0.26);
  border-radius: 14px;
  outline: none;
  color: var(--ink);
  background: rgba(8, 6, 5, 0.55);
  font: inherit;
  padding: 13px 14px;
  resize: vertical;
}

.result-card input:focus,
.result-card textarea:focus {
  border-color: rgba(244, 212, 132, 0.7);
  box-shadow: 0 0 0 3px rgba(217, 166, 68, 0.12);
}

.result-card input::placeholder,
.result-card textarea::placeholder {
  color: rgba(200, 173, 123, 0.5);
}

.result-card .copy-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.result-card .copy-row input {
  flex: 1;
  min-width: 0;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.result-actions .button {
  min-height: 50px;
  border: 0;
  cursor: pointer;
}

.result-actions .button.ghost {
  border: 1px solid rgba(248, 239, 217, 0.22);
}

.manual-fallback {
  margin-top: 22px;
  border-top: 1px solid rgba(217, 166, 68, 0.2);
  padding-top: 16px;
}

.manual-fallback summary {
  cursor: pointer;
  color: var(--gold-soft);
  font-weight: 800;
  list-style: none;
}

.manual-fallback summary::-webkit-details-marker {
  display: none;
}

.manual-fallback summary::before {
  content: "▸";
  display: inline-block;
  margin-right: 8px;
  transition: transform 160ms ease;
}

.manual-fallback[open] summary::before {
  transform: rotate(90deg);
}

.manual-body {
  margin-top: 14px;
  color: #cdb78d;
  line-height: 1.6;
}

.manual-body .button {
  margin: 6px 0 4px;
}

.footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: #856f54;
  font-size: 0.84rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes cardSummon {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.012);
  }
}

@keyframes dieFloat {
  0%,
  100% {
    transform: rotate(-7deg) translateY(0);
  }
  50% {
    transform: rotate(5deg) translateY(-8px);
  }
}

@media (max-width: 1020px) {
  .hero,
  .cta-panel,
  .helper-layout,
  .auto-capture-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    order: -1;
  }

  .obs-frame {
    min-height: 480px;
    transform: none;
  }

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

  .showcase-inner,
  .product-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-header {
    align-items: stretch;
    border-radius: 24px;
  }

  .nav {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 36px;
  }

  .obs-frame {
    min-height: 420px;
    border-radius: 22px;
  }

  .scene-grid {
    min-height: 376px;
    padding: 18px;
  }

  .roll-card {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 24px 20px 38px;
    text-align: center;
  }

  .total {
    min-height: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(217, 166, 68, 0.35);
    border-left: 0;
  }

  .total strong {
    font-size: 3.8rem;
  }

  .feature-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .split-panel,
  .process,
  .plugin-details,
  .faq,
  .cta-panel {
    padding: 64px 0;
  }

  .timeline li {
    grid-template-columns: 1fr;
  }

  .cta-content {
    padding: 28px;
  }

  .footer {
    display: block;
  }

  .helper-hero {
    padding-top: 56px;
  }

  .helper-card,
  .helper-warning,
  .auto-capture-card,
  .helper-output {
    padding: 22px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
