:root {
  color-scheme: dark;
  --bg: #050505;
  --surface: rgba(19, 19, 20, 0.86);
  --surface-strong: #141415;
  --line: rgba(255, 255, 255, 0.1);
  --text: #faf9f5;
  --muted: #aaa8a2;
  --accent: #ff7a16;
  --accent-light: #ffd15d;
  --accent-dark: #d83a00;
  --accent-rgb: 255, 122, 22;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.theme-hook-keys {
  --accent: #ff8a18;
  --accent-light: #fff06b;
  --accent-dark: #ec2515;
  --accent-rgb: 255, 112, 18;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
  min-width: 280px;
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--bg);
  background-size: 48px 48px;
}

body::before {
  content: "";
  position: fixed;
  z-index: -3;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), #050505 70%);
  pointer-events: none;
}

.ambient {
  position: fixed;
  z-index: -2;
  width: 44rem;
  height: 44rem;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.11);
  filter: blur(110px);
  pointer-events: none;
}

.ambient-one {
  top: -24rem;
  right: -13rem;
}

.ambient-two {
  top: 32rem;
  left: -30rem;
  opacity: 0.55;
}

a {
  color: inherit;
}

.site-header,
main,
footer {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  object-fit: cover;
  filter: drop-shadow(0 0 14px rgba(var(--accent-rgb), 0.45));
}

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

.brand strong {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

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

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

nav a {
  padding: 10px 15px;
  border-radius: 11px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

nav a:hover,
nav a:focus-visible,
nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 34px;
  padding: 64px 0 78px;
}

.eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--accent-light);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

h1 span {
  color: transparent;
  background: linear-gradient(100deg, var(--accent-light), var(--accent), #ff3b26);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy > p {
  max-width: 650px;
  margin-bottom: 30px;
  color: #c8c6c0;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.72;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-button,
.contact-button,
.ghost-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, filter 160ms ease, border-color 160ms ease;
}

.hero-button,
.contact-button {
  color: #0b0804;
  background: linear-gradient(145deg, var(--accent-light), var(--accent) 60%, var(--accent-dark));
  box-shadow: 0 14px 34px rgba(var(--accent-rgb), 0.2);
}

.ghost-button {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.hero-button:hover,
.contact-button:hover,
.ghost-button:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.hero-art {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  border-radius: 50%;
}

.hero-art::before {
  width: 420px;
  height: 420px;
}

.hero-art::after {
  width: 330px;
  height: 330px;
  border-color: rgba(var(--accent-rgb), 0.28);
}

.logo-halo {
  position: absolute;
  z-index: -1;
  width: 62%;
  height: 62%;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.24);
  filter: blur(58px);
}

.hero-art img {
  width: min(90%, 460px);
  height: auto;
  border-radius: 25%;
  object-fit: contain;
  filter: drop-shadow(0 24px 45px rgba(0, 0, 0, 0.48));
  animation: logo-float 6s ease-in-out infinite;
}

.theme-vs-hook .hero-art img {
  width: min(92%, 500px);
}

@keyframes logo-float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-11px) rotate(1deg);
  }
}

.policy-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding: 82px 0 30px;
  border-top: 1px solid var(--line);
}

.policy-intro h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: -0.055em;
}

.updated {
  min-width: 218px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  color: var(--muted);
  font-size: 0.72rem;
}

.updated strong {
  color: var(--text);
  font-size: 0.82rem;
}

.policy-grid {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(12, 12, 13, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.policy-section {
  min-height: 360px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 38px;
  border-bottom: 1px solid var(--line);
}

.policy-section:nth-child(odd):not(.wide) {
  border-right: 1px solid var(--line);
}

.policy-section.wide {
  min-height: 0;
  grid-column: 1 / -1;
  padding-block: 44px;
  background:
    radial-gradient(circle at 100% 0%, rgba(var(--accent-rgb), 0.1), transparent 22rem),
    rgba(255, 255, 255, 0.02);
}

.policy-section:last-child,
.policy-section:nth-last-child(2) {
  border-bottom: 0;
}

.section-number {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.policy-section h3 {
  margin-bottom: 14px;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.policy-section p,
.policy-section li,
.contact-banner p,
.support-option p,
.before-contact li,
.privacy-note {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.74;
}

.policy-section p:last-child,
.policy-section ul:last-child {
  margin-bottom: 0;
}

ul {
  margin: 13px 0 0;
  padding-left: 1.15rem;
}

li + li {
  margin-top: 6px;
}

li::marker {
  color: var(--accent);
}

.contact-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-top: 18px;
  padding: 40px;
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(var(--accent-rgb), 0.17), transparent 23rem),
    linear-gradient(145deg, #171718, #0d0d0e);
}

.contact-banner h2 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 4vw, 2.45rem);
  letter-spacing: -0.045em;
}

.contact-banner p {
  margin-bottom: 0;
}

.support-hero {
  max-width: 800px;
  margin: 0 auto;
  padding: 70px 0 52px;
  text-align: center;
}

.support-logo {
  width: 112px;
  height: 112px;
  margin: 0 auto 26px;
  padding: 5px;
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  border-radius: 29px;
  background: rgba(var(--accent-rgb), 0.07);
  box-shadow: 0 0 60px rgba(var(--accent-rgb), 0.19);
}

.support-logo img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.support-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
}

.support-hero > p {
  max-width: 700px;
  margin: 0 auto;
  color: #c8c6c0;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

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

.support-option {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(24, 24, 26, 0.96), rgba(10, 10, 11, 0.97));
  box-shadow: var(--shadow);
}

.support-option.whatsapp-option {
  border-color: rgba(48, 255, 96, 0.25);
  background:
    radial-gradient(circle at 100% 0%, rgba(48, 255, 96, 0.12), transparent 18rem),
    linear-gradient(145deg, rgba(24, 24, 26, 0.96), rgba(10, 10, 11, 0.97));
}

.option-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(48, 255, 96, 0.36);
  border-radius: 15px;
  color: #46ff76;
  background: rgba(48, 255, 96, 0.08);
  font-weight: 950;
}

.mail-icon {
  border-color: rgba(var(--accent-rgb), 0.36);
  color: var(--accent-light);
  background: rgba(var(--accent-rgb), 0.08);
}

.support-option h2 {
  margin-bottom: 9px;
  font-size: 1.5rem;
}

.support-option p {
  margin-bottom: 27px;
}

.support-option .contact-button,
.full-button {
  width: 100%;
  margin-top: auto;
}

.support-status {
  width: 100%;
  display: block;
  margin-top: 10px;
  color: #77766f;
  font-size: 0.68rem;
  text-align: center;
}

.whatsapp-option .contact-button {
  background: linear-gradient(145deg, #a0ff9a, #35ed63 60%, #0b9d46);
  box-shadow: 0 14px 34px rgba(48, 255, 96, 0.15);
}

.before-contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  margin-top: 16px;
  padding: 38px 40px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.025);
}

.before-contact h2 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 4vw, 2.2rem);
  letter-spacing: -0.04em;
}

.before-contact ul {
  margin-top: 0;
}

.privacy-note {
  margin: 28px auto 0;
  text-align: center;
}

.privacy-note a {
  color: var(--text);
}

footer {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
}

footer a {
  color: var(--text);
  text-decoration: none;
}

@media (max-width: 900px) {
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: 78px;
  }

  .hero-art {
    min-height: 390px;
    grid-row: 1;
  }

  .hero-art img {
    width: min(70%, 390px);
  }

  .theme-vs-hook .hero-art img {
    width: min(75%, 430px);
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy > p {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .policy-section {
    min-height: 410px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 0;
    padding: 17px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  nav a {
    flex: 0 0 auto;
  }

  .hero {
    padding: 45px 0 58px;
  }

  .hero-art {
    min-height: 280px;
  }

  .hero-art::before {
    width: 280px;
    height: 280px;
  }

  .hero-art::after {
    width: 220px;
    height: 220px;
  }

  .policy-intro {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 62px;
  }

  .updated {
    align-items: flex-start;
  }

  .policy-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .policy-section,
  .policy-section.wide {
    min-height: 0;
    grid-column: auto;
    padding: 29px 24px;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .policy-section:last-child {
    border-bottom: 0 !important;
  }

  .contact-banner,
  .before-contact {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
    padding: 29px 24px;
  }

  .contact-actions,
  .contact-actions a,
  .contact-banner > .contact-button {
    width: 100%;
  }

  .support-hero {
    padding-top: 52px;
  }
}

@media (max-width: 430px) {
  .site-header,
  main,
  footer {
    width: min(100% - 24px, 1160px);
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 2.85rem;
  }

  .hero-art {
    min-height: 240px;
  }

  .policy-section {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .support-option {
    min-height: 285px;
    padding: 28px 23px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
