:root {
  --bg-1: #050505;
  --bg-2: #121212;
  --bg-3: #1b1b1b;
  --text: #f8fafc;
  --muted: #b6bec8;
  --accent: #f5a300;
  --accent-2: #ffbf3f;
  --accent-dark: #c67a00;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: rgba(245, 163, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: var(--text);
  text-align: center;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 163, 0, 0.12), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(255, 191, 63, 0.08), transparent 25%),
    radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.04), transparent 30%),
    linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 45%, var(--bg-3) 100%);
  background-attachment: fixed;
  position: relative;
}

/* soft animated overlay */
body::before {
  content: "";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.03), transparent 20%),
    radial-gradient(circle at 70% 60%, rgba(245,163,0,0.05), transparent 22%),
    radial-gradient(circle at 50% 50%, rgba(255,191,63,0.04), transparent 18%);
  animation: drift 16s ease-in-out infinite alternate;
  z-index: 0;
}

.logo:hover{
  transform:translateY(-6px) scale(1.03);
  filter:
    drop-shadow(0 0 20px rgba(255,170,40,0.35))
    drop-shadow(0 0 60px rgba(255,170,40,0.15));
}

/* optional subtle grid texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
  opacity: 0.25;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 100px 20px 60px;
}

/* if your logo is an image */
.logo {
  width: min(520px, 92%);
  height: auto;
  margin: 0 auto 24px;
  display: block;
  filter:
    drop-shadow(0 0 18px rgba(245, 163, 0, 0.10))
    drop-shadow(0 0 36px rgba(245, 163, 0, 0.06));
  animation: logoFloat 5s ease-in-out infinite;
}

/* fallback if you are still using h1 text instead of image */
h1 {
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.95;
  margin: 0 0 14px;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: white;
  text-shadow: 0 0 18px rgba(245, 163, 0, 0.08);
}

.tagline {
  max-width: 680px;
  margin: 0 auto 38px;
  font-size: clamp(17px, 2.4vw, 22px);
  line-height: 1.6;
  color: var(--muted);
}

/* nice little glass panel if you want content to feel more designed */
.hero-card {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 28px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.022)),
    linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0.008));
  backdrop-filter: blur(10px);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transform-style: preserve-3d;
  transition:
    transform 0.18s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
  will-change: transform;
  overflow: hidden;
}

.hero-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:24px;
  background:radial-gradient(
    circle at center,
    rgba(255,170,40,0.25),
    transparent 70%
  );
  z-index:-1;
  filter:blur(40px);
  opacity:.5;
}

/* ===== 3D CARD SETUP ===== */
.container {
  perspective: 1400px;
}

/* stronger glow behind card */
.hero-card::before {
  content: "";
  position: absolute;
  inset: -80px;
  border-radius: 36px;
  background:
    radial-gradient(
      circle at var(--mx, 50%) var(--my, 50%),
      rgba(245, 163, 0, 0.18) 0%,
      rgba(245, 163, 0, 0.08) 22%,
      rgba(245, 163, 0, 0.03) 40%,
      transparent 65%
    );
  filter: blur(40px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.hero-card:hover::before {
  opacity: 1;
}

/* internal light that follows mouse on card */
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background:
    radial-gradient(
      500px circle at var(--mx, 50%) var(--my, 50%),
      rgba(255, 185, 60, 0.05) 0%,
      rgba(255, 185, 60, 0.025) 24%,
      rgba(255, 255, 255, 0.02) 40%,
      transparent 62%
    );
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 0;
}

.hero-card:hover::after {
  opacity: 1;
}

.hero-card:hover {
  border-color: rgba(245, 163, 0, 0.22);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255,255,255,0.03) inset;
}

/* lift real content above overlay */
.hero-card > * {
  position: relative;
  z-index: 1;
  transform: translateZ(24px);
}

/* ===== LOGO TEXT ===== */
.logo-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  margin: 22px 0 26px;
  line-height: 1;
  user-select: none;
  transform-style: preserve-3d;
}

.logo-num {
  font-size: clamp(58px, 7vw, 82px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 0 12px rgba(255,255,255,0.05);
  transform: translateZ(38px);
}

.logo-tools {
  font-size: clamp(58px, 7vw, 82px);
  font-weight: 700;
  letter-spacing: 0.18em;
  padding-left: 0.18em;
  transform: translateZ(52px);
  background: linear-gradient(
    90deg,
    #f5a300 0%,
    #ffcc5c 20%,
    #f5a300 40%,
    #ffd77e 52%,
    #f09a00 70%,
    #ffcc5c 85%,
    #f5a300 100%
  );
  background-size: 220% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 14px rgba(245, 163, 0, 0.18));
  animation: toolsGradientShift 6s linear infinite;
}

/* subtle shimmer pass */
.logo-tools::after {
  content: "";
}

/* enhance hover */
.hero-card:hover .logo-tools {
  filter:
    drop-shadow(0 0 18px rgba(245, 163, 0, 0.26))
    drop-shadow(0 0 40px rgba(245, 163, 0, 0.10));
}

.hero-card:hover .logo-num {
  text-shadow:
    0 0 12px rgba(255,255,255,0.08),
    0 0 30px rgba(255,255,255,0.04);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background:
    radial-gradient(
      500px circle at var(--mx, 50%) var(--my, 50%),
      rgba(255, 185, 60, 0.07) 0%,
      rgba(255, 185, 60, 0.035) 22%,
      rgba(255, 255, 255, 0.025) 38%,
      transparent 60%
    );
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 0;
}

/* keep text from being too huge on mobile */
@media (max-width: 640px) {
  .logo-text {
    gap: 10px;
    flex-wrap: nowrap;
  }

  .logo-tools {
    letter-spacing: 0.12em;
    padding-left: 0.12em;
  }
}

/* ===== BUTTON POLISH ===== */
.app-link,
.secondary-link,
.status-pill,
.tagline {
  transform: translateZ(30px);
}

/* ===== ANIMATIONS ===== */
@keyframes toolsGradientShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 220% 50%;
  }
}

/* buttons area */
.button-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.app-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 15px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.app-link {
  color: #111;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  box-shadow:
    0 10px 28px var(--shadow),
    inset 0 1px 0 rgba(255,255,255,0.35);
}

.app-link:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 14px 34px rgba(245, 163, 0, 0.32),
    inset 0 1px 0 rgba(255,255,255,0.35);
}

.app-link{
  position:relative;
  overflow:hidden;
}

.app-link::after{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:120%;
  height:100%;
  background:linear-gradient(
    110deg,
    transparent 0%,
    rgba(255,255,255,0.4) 45%,
    transparent 60%
  );
  transition:all .6s ease;
}

.app-link:hover::after{
  left:120%;
}

.secondary-link {
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}

.secondary-link:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(245, 163, 0, 0.35);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

/* small badge / status chips */
.status-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 22px;
}

.status-pill {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: #e7edf3;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
}

.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 170, 40, 0.28) 0%,
    rgba(255, 170, 40, 0.12) 35%,
    rgba(255, 170, 40, 0.05) 55%,
    transparent 72%
  );
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  filter: blur(40px);
  z-index: 0;
  transition:
    width 0.25s ease,
    height 0.25s ease,
    opacity 0.25s ease,
    filter 0.25s ease;
}

.particles{
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:
    radial-gradient(rgba(255,200,100,0.15) 1px, transparent 1px);
  background-size:80px 80px;
  animation:particleMove 40s linear infinite;
  opacity:.4;
}

@keyframes particleMove{
  from{ transform:translateY(0px); }
  to{ transform:translateY(-120px); }
}

/* footer */
footer {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  padding-bottom: 30px;
  font-size: 14px;
  color: #8d97a3;
}

footer a {
  color: #c8d1db;
  text-decoration: none;
  transition: color 0.2s ease;
}

footer a:hover {
  color: var(--accent-2);
}

/* animations */
@keyframes logoFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes drift {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  100% {
    transform: translate3d(2%, 1%, 0) scale(1.04);
  }
}

/* mobile */
@media (max-width: 640px) {
  .container {
    padding-top: 70px;
  }

  .hero-card {
    padding: 28px 18px;
    border-radius: 20px;
  }

  .tagline {
    margin-bottom: 28px;
  }

  .app-link,
  .secondary-link {
    width: 100%;
    min-width: 0;
  }

  .button-row {
    gap: 12px;
  }
}

/* ===== PRIVACY PAGE ===== */

.privacy-container {
  max-width: 980px;
  padding-top: 70px;
  padding-bottom: 40px;
}

.privacy-card {
  max-width: 860px;
  text-align: left;
  padding: 34px 34px 30px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: #d3dae2;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.back-link:hover {
  color: var(--accent-2);
  opacity: 1;
  transform: translateX(-2px);
}

.privacy-header {
  margin-bottom: 26px;
}

.privacy-title {
  margin: 14px 0 10px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 0 18px rgba(245, 163, 0, 0.06);
}

.privacy-updated {
  margin: 0;
  color: #97a2ae;
  font-size: 14px;
}

.privacy-content {
  color: #d7dde4;
  font-size: 17px;
  line-height: 1.8;
}

.privacy-content p {
  margin: 0 0 18px;
  color: #c5ced8;
}

.privacy-content h2 {
  margin: 34px 0 12px;
  font-size: 22px;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.01em;
  position: relative;
}

.privacy-content h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.85;
}

.privacy-content a {
  color: var(--accent-2);
  text-decoration: none;
}

.privacy-content a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .privacy-card {
    padding: 24px 18px 22px;
    border-radius: 20px;
  }

  .privacy-content {
    font-size: 16px;
    line-height: 1.75;
  }

  .privacy-content h2 {
    font-size: 20px;
    margin-top: 28px;
  }
}

/* ===== PRIVACY HEADER IMAGE ===== */

.privacy-header {
  text-align: center;
  margin-bottom: 26px;
}

.privacy-banner {
  max-width: 460px;
  width: 90%;
  margin: 10px auto 16px;
  display: block;

  filter:
    drop-shadow(0 0 18px rgba(245,163,0,0.12))
    drop-shadow(0 0 40px rgba(245,163,0,0.06));

  animation: logoFloat 6s ease-in-out infinite;
}
/* ===== BACK BUTTON ===== */

.home-button {
  display: block;
  width: fit-content;
  margin: 34px auto 6px;
  padding: 15px 26px;

  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;

  color: #111;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));

  box-shadow:
    0 10px 28px var(--shadow),
    inset 0 1px 0 rgba(255,255,255,0.35);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;

  position: relative;
  overflow: hidden;
}

.home-button::after{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:120%;
  height:100%;

  background:linear-gradient(
    110deg,
    transparent 0%,
    rgba(255,255,255,0.4) 45%,
    transparent 60%
  );

  transition:all .6s ease;
}

.home-button:hover::after{
  left:120%;
}

.home-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 34px rgba(245,163,0,0.32),
    inset 0 1px 0 rgba(255,255,255,0.35);
}

.privacy-banner{
  animation: logoFloat 6s ease-in-out infinite;
}
