:root {
  color-scheme: dark;
  --background: #0a111d;
  --surface: #141f2d;
  --surface-raised: #1e2b3b;
  --surface-soft: #243244;
  --border: #344457;
  --text: #f7f8fa;
  --copy: #d2d8e0;
  --muted: #9ca3af;
  --orange: #f26d12;
  --orange-light: #ff9b55;
  --orange-wash: rgb(242 109 18 / 12%);
  --sage: #a0b08e;
  --sage-light: #c4cfb8;
  --sage-wash: rgb(160 176 142 / 12%);
  --shadow: 0 28px 80px rgb(0 0 0 / 34%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% -8%, rgb(242 109 18 / 20%), transparent 28rem),
    radial-gradient(circle at 92% 8%, rgb(160 176 142 / 12%), transparent 26rem),
    linear-gradient(rgb(255 255 255 / 2%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 2%) 1px, transparent 1px),
    var(--background);
  background-size: auto, auto, 3.25rem 3.25rem, 3.25rem 3.25rem, auto;
  font-size: 16px;
  line-height: 1.72;
}

::selection {
  color: #111827;
  background: var(--orange-light);
}

a {
  color: var(--orange-light);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

a:hover {
  color: #ffd0ae;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  padding: 0.65rem 0.9rem;
  color: #111827;
  background: #fff;
  border-radius: 0.55rem;
  transform: translateY(-180%);
}

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

.site-header,
.language-switcher,
.policy-shell,
.language-hub,
.site-footer {
  width: min(100% - 2rem, 1040px);
  margin-inline: auto;
}

.site-header {
  display: flex;
  min-height: 4.75rem;
  align-items: center;
}

.brand {
  display: inline-flex;
  gap: 0.85rem;
  align-items: center;
  color: var(--text);
  text-decoration: none;
}

.brand:hover {
  color: var(--text);
}

.brand-logo {
  display: block;
  width: clamp(5.5rem, 14vw, 6.75rem);
  height: auto;
  filter: drop-shadow(0 6px 15px rgb(0 0 0 / 28%));
}

.brand-section {
  padding: 0.21rem 0.5rem 0.19rem;
  color: #1d130c;
  background: var(--orange);
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
  transform: translateY(0.1rem);
}

.language-switcher {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding: 0.75rem;
  background: rgb(20 31 45 / 90%);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 12px 40px rgb(0 0 0 / 18%);
  backdrop-filter: blur(14px);
}

.language-overview,
.language-links a {
  padding: 0.45rem 0.7rem;
  border-radius: 0.6rem;
  text-decoration: none;
  white-space: nowrap;
}

.language-overview {
  color: var(--muted);
}

.language-links {
  display: flex;
  gap: 0.2rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.language-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.language-links a:hover,
.language-links a[aria-current="page"] {
  color: var(--text);
  background: var(--surface-soft);
}

.language-links a[aria-current="page"] {
  box-shadow: inset 0 0 0 1px rgb(242 109 18 / 80%);
}

.policy-status {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin: 0 0 0.75rem 0.25rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.status-badge {
  padding: 0.13rem 0.53rem;
  color: #ffe3cf;
  background: var(--orange-wash);
  border: 1px solid rgb(242 109 18 / 42%);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.status-original {
  color: var(--sage-light);
  background: var(--sage-wash);
  border-color: rgb(160 176 142 / 38%);
}

.policy-card {
  padding: clamp(1.35rem, 5vw, 4.25rem);
  overflow-wrap: anywhere;
  background: linear-gradient(145deg, rgb(30 43 59 / 97%), rgb(20 31 45 / 98%));
  border: 1px solid var(--border);
  border-radius: 1.45rem;
  box-shadow: var(--shadow);
}

.policy-card h1 {
  max-width: 760px;
  margin: 0.15rem 0 1.15rem;
  color: #fff;
  font-size: clamp(2.25rem, 7vw, 4.3rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.policy-card h2 {
  margin: 3.4rem 0 1rem;
  padding-top: 1.3rem;
  color: #fff;
  border-top: 1px solid var(--border);
  font-size: clamp(1.35rem, 3vw, 1.78rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
  scroll-margin-top: 1.5rem;
}

.policy-card h2::before {
  display: inline-block;
  width: 0.48rem;
  height: 0.48rem;
  margin: 0 0.58rem 0.15rem 0;
  background: var(--orange);
  border-radius: 0.15rem;
  content: "";
  box-shadow: 0 0 0 4px var(--orange-wash);
}

.policy-card h3 {
  margin: 2.2rem 0 0.65rem;
  color: var(--sage-light);
  font-size: 1.12rem;
  letter-spacing: -0.01em;
}

.policy-card p,
.policy-card li {
  color: var(--copy);
}

.policy-card p {
  margin-block: 0.85rem;
}

.policy-card strong {
  color: #fff;
}

.policy-card ul,
.policy-card ol {
  padding-left: 1.45rem;
}

.policy-card li {
  padding-left: 0.18rem;
}

.policy-card li + li {
  margin-top: 0.58rem;
}

.policy-card li::marker {
  color: var(--orange-light);
}

.privacy-intro {
  margin: 1.6rem 0 1.15rem;
  padding: clamp(1.05rem, 3vw, 1.45rem) clamp(1.1rem, 3vw, 1.55rem);
  background:
    linear-gradient(135deg, rgb(242 109 18 / 15%), rgb(160 176 142 / 8%)),
    var(--surface);
  border: 1px solid rgb(242 109 18 / 36%);
  border-left: 4px solid var(--orange);
  border-radius: 0.95rem;
}

.privacy-intro p {
  margin: 0;
  color: #e9edf2;
  font-size: clamp(1rem, 2vw, 1.08rem);
}

.translation-note {
  margin-bottom: 2.5rem;
  padding: 1.2rem 1.3rem;
  background: var(--orange-wash);
  border: 1px solid rgb(242 109 18 / 34%);
  border-radius: 0.95rem;
}

.translation-note h1 {
  margin: 0 0 0.5rem;
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: -0.025em;
}

.translation-note p {
  margin: 0;
}

.original-label {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin: 2.5rem 0 1.25rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.original-label::after {
  height: 1px;
  flex: 1;
  content: "";
  background: var(--border);
}

.language-hub {
  padding: clamp(2rem, 8vw, 6.5rem) 0 3rem;
}

.hub-eyebrow {
  margin: 0 0 0.75rem;
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.language-hub h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.7rem, 9vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.hub-intro {
  max-width: 680px;
  margin: 1.65rem 0 2.65rem;
  color: var(--copy);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.9rem;
}

.language-card {
  position: relative;
  display: flex;
  min-height: 8rem;
  padding: 1.2rem 1.25rem;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text);
  background: linear-gradient(145deg, rgb(30 43 59 / 96%), rgb(20 31 45 / 94%));
  border: 1px solid var(--border);
  border-radius: 1rem;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.language-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 2.8rem;
  height: 0.32rem;
  background: var(--orange);
  border-radius: 0 0 0 0.25rem;
  content: "";
}

.language-card:nth-child(even)::before {
  background: var(--sage);
}

.language-card::after {
  position: absolute;
  right: 1.25rem;
  bottom: 1.05rem;
  color: var(--orange-light);
  content: "→";
  font-size: 1.2rem;
  font-weight: 800;
}

.language-card:hover {
  color: var(--text);
  background: linear-gradient(145deg, var(--surface-soft), var(--surface-raised));
  border-color: rgb(242 109 18 / 62%);
  transform: translateY(-3px);
}

.language-card strong {
  font-size: 1.22rem;
  letter-spacing: -0.015em;
}

.language-card small {
  max-width: calc(100% - 2rem);
  color: var(--muted);
  line-height: 1.35;
}

.hub-note {
  max-width: 760px;
  margin: 1.6rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hub-account-action {
  display: inline-flex;
  gap: 0.15rem;
  margin-top: 1.35rem;
  padding: 0.85rem 1rem;
  flex-direction: column;
  color: var(--text);
  background: var(--orange-wash);
  border: 1px solid rgb(242 109 18 / 38%);
  border-radius: 0.85rem;
  text-decoration: none;
}

.hub-account-action:hover {
  color: var(--text);
  background: rgb(242 109 18 / 18%);
  border-color: rgb(242 109 18 / 70%);
}

.hub-account-action span {
  color: var(--orange-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hub-account-action strong::after {
  margin-left: 0.45rem;
  color: var(--orange-light);
  content: "→";
}

.widget-test-shell {
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
  padding: clamp(2rem, 7vw, 5rem) 0 3rem;
}

.widget-test-intro {
  max-width: 760px;
  margin-bottom: clamp(1.6rem, 4vw, 2.5rem);
}

.widget-test-eyebrow {
  margin: 0 0 0.7rem;
  color: var(--orange-light);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.widget-test-intro h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.6rem, 8vw, 5.75rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.widget-test-intro > p:last-child {
  max-width: 680px;
  margin: 1.25rem 0 0;
  color: var(--copy);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.widget-test-stage {
  width: 100%;
  min-width: 0;
  min-height: 780px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
}

.widget-test-stage .transparion-widget-frame {
  display: block;
  width: 100%;
  min-height: 780px;
  border: 0;
}

.deletion-shell {
  width: min(100% - 2rem, 960px);
}

.deletion-card {
  position: relative;
  overflow: hidden;
}

.deletion-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(32vw, 12rem);
  height: 0.42rem;
  background: linear-gradient(90deg, var(--sage), var(--orange));
  border-radius: 0 0 0 0.3rem;
  content: "";
}

.deletion-eyebrow {
  margin: 0 0 0.7rem !important;
  color: var(--orange-light) !important;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.deletion-lead {
  max-width: 720px;
  margin-bottom: 1.45rem !important;
  color: #e6ebf1 !important;
  font-size: clamp(1.06rem, 2vw, 1.23rem);
}

.primary-action {
  display: inline-flex;
  min-height: 3rem;
  padding: 0.74rem 1.08rem;
  align-items: center;
  justify-content: center;
  color: #211208;
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 0.75rem;
  box-shadow: 0 12px 30px rgb(242 109 18 / 22%);
  font: inherit;
  font-weight: 820;
  line-height: 1.3;
  text-decoration: none;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.primary-action:hover {
  color: #1b110a;
  background: var(--orange-light);
  border-color: var(--orange-light);
  transform: translateY(-1px);
}

.deletion-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 2.2rem 0 1rem;
}

.deletion-facts > div {
  display: flex;
  min-height: 8.5rem;
  padding: 1rem;
  flex-direction: column;
  background: rgb(10 17 29 / 40%);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
}

.deletion-facts strong {
  margin-bottom: 0.45rem;
  color: var(--sage-light);
  line-height: 1.35;
}

.deletion-facts span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.request-panel {
  margin: 3rem 0 1.5rem;
  padding: clamp(1.1rem, 4vw, 2rem);
  background:
    linear-gradient(145deg, rgb(242 109 18 / 8%), rgb(160 176 142 / 6%)),
    rgb(10 17 29 / 58%);
  border: 1px solid rgb(242 109 18 / 36%);
  border-radius: 1.1rem;
  scroll-margin-top: 1.25rem;
}

.request-panel h2 {
  margin: 0.1rem 0 0.45rem;
  padding: 0;
  border: 0;
}

.request-panel h2::before {
  display: none;
}

.request-panel-copy > p:last-child {
  max-width: 680px;
  margin-bottom: 1.45rem;
}

.deletion-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: flex;
  gap: 0.38rem;
  flex-direction: column;
}

.form-field:first-child,
.form-field:nth-child(4),
.confirmation-field,
.form-submit,
.form-status,
.form-fallback {
  grid-column: 1 / -1;
}

.form-field label {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 760;
}

.form-field label span {
  color: var(--orange-light);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.72rem 0.8rem;
  color: var(--text);
  background: var(--background);
  border: 1px solid #46576b;
  border-radius: 0.68rem;
  font: inherit;
  line-height: 1.35;
}

.form-field textarea {
  min-height: 7rem;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange-light);
  outline: 3px solid rgb(242 109 18 / 20%);
  outline-offset: 1px;
}

.form-field small {
  color: var(--muted);
  line-height: 1.4;
}

.confirmation-field {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  color: var(--copy);
  background: var(--sage-wash);
  border: 1px solid rgb(160 176 142 / 30%);
  border-radius: 0.75rem;
  cursor: pointer;
}

.confirmation-field input {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.25rem 0 0;
  accent-color: var(--orange);
}

.form-submit {
  justify-self: start;
}

.form-status {
  min-height: 1.5rem;
  margin: -0.25rem 0 0 !important;
  color: var(--sage-light) !important;
  font-size: 0.9rem;
}

.form-fallback {
  margin: -0.5rem 0 0 !important;
  color: var(--muted) !important;
  font-size: 0.86rem;
}

.site-footer {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 2.25rem 0 3rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--sage-light);
}

.footer-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

@media (max-width: 720px) {
  .site-header {
    min-height: 4.35rem;
  }

  .brand {
    gap: 0.65rem;
  }

  .brand-section {
    font-size: 0.54rem;
  }

  .language-switcher {
    align-items: stretch;
    flex-direction: column;
  }

  .language-overview {
    align-self: flex-start;
  }

  .language-links {
    padding-bottom: 0.15rem;
  }

  .policy-card h2 {
    margin-top: 2.8rem;
  }

  .deletion-facts,
  .deletion-form {
    grid-template-columns: 1fr;
  }

  .deletion-facts > div {
    min-height: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .language-card,
  .primary-action {
    transition: none;
  }
}
