:root {
  --bg: #030303;
  --bg-soft: #101010;
  --text: #ffffff;
  --muted: #bdbdbd;
  --gold: #ffc400;
  --gold-dark: #d89b00;
  --line: rgba(255, 255, 255, 0.18);
  --hero-path: url("assets/hero.png?v=20260427-1");
  --phone-max: 430px;
  --font-display: "Rubik Wet Paint", cursive;
  --font-ui: "Oswald", "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background:
    radial-gradient(circle at top, rgba(255, 196, 0, 0.1), transparent 22%),
    #020202;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-ui);
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 196, 0, 0.08), transparent 24%),
    linear-gradient(180deg, #070707 0%, #010101 100%);
}

body.menu-open {
  overflow: hidden;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.app-frame {
  width: 100%;
}

.app {
  position: relative;
  width: 100%;
  max-width: var(--phone-max);
  margin: 0 auto;
  overflow: hidden;
  background: #000000;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

.screen {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
}

.hero-screen {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #090909;
  background-image: var(--hero-path);
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.hero-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.32) 0%,
      rgba(0, 0, 0, 0.64) 46%,
      rgba(0, 0, 0, 0.96) 100%
    );
}

.hero-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 196, 0, 0.16), transparent 22%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.03), transparent 32%);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 118px;
  padding: calc(14px + env(safe-area-inset-top, 0px)) 18px 14px;
  background: linear-gradient(180deg, rgba(3, 3, 3, 0.98), rgba(3, 3, 3, 0.84));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  flex: 0 0 auto;
  width: 46px;
  height: 58px;
  overflow: hidden;
  padding: 4px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.brand-mark::after {
  content: attr(data-fallback);
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.brand-mark.is-fallback::after {
  display: flex;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) contrast(1.18);
}

.brand-text {
  min-width: 0;
}

.brand-title,
.footer-title,
.brand-subtitle,
.footer-subtitle,
.btn,
.footer-links a,
.menu-link,
.menu-kicker {
  font-family: var(--font-ui);
}

.brand-title,
.footer-title {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-subtitle,
.footer-subtitle {
  margin-top: 7px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu-btn,
.close-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 52px;
  min-height: 52px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.menu-btn:hover,
.close-menu:hover,
.btn:hover,
.to-top:hover,
.scroll-link:hover,
.footer-links a:hover,
.menu-link:hover {
  transform: translateY(-2px);
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 2.5px 0;
  border-radius: 999px;
  background: transparent;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.menu-open .menu-btn span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-btn span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-btn span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 18px 54px;
}

.hero-copy-block {
  margin-top: auto;
  transform: translateY(18px);
}

.hero-domain {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: none;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(56px, 17vw, 96px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transform: rotate(-2deg);
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.85);
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-title-line {
  position: relative;
  margin-top: -2px;
  padding-bottom: 18px;
}

.hero-title-line::after {
  content: "";
  position: absolute;
  left: 12%;
  bottom: 0;
  width: 74%;
  height: 10px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(233, 233, 233, 0.95)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0 22px,
      rgba(210, 210, 210, 0.92) 22px 26px
    );
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
  transform: rotate(-2deg);
}

.hero-copy {
  max-width: 22ch;
  margin: 22px 0 0;
  color: #e7e7e7;
  font-size: 1rem;
  line-height: 1.55;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.65);
}

.hero-actions {
  display: grid;
  gap: 14px;
  margin-top: 42px;
}

.btn,
.to-top,
.menu-link,
.scroll-link {
  min-height: 44px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 68px;
  padding: 18px 20px;
  border-radius: 20px;
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  color: #050505;
  background: linear-gradient(180deg, #ffd84a, #f5b400);
  box-shadow: 0 16px 32px rgba(245, 180, 0, 0.28);
}

.btn-secondary {
  color: var(--gold);
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid var(--gold);
  box-shadow: inset 0 0 0 1px rgba(255, 196, 0, 0.14);
}

.scroll-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin-top: 18px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-link::before {
  content: "";
  width: 18px;
  height: 18px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.footer-screen {
  display: flex;
  align-items: center;
  padding: 20px 16px 32px;
  background:
    radial-gradient(circle at top center, rgba(255, 196, 0, 0.12), transparent 24%),
    linear-gradient(180deg, #090909 0%, #020202 100%);
}

.footer-card {
  width: 100%;
  padding: 28px 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.96), rgba(6, 6, 6, 0.98));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
}

.footer-brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark-footer {
  width: 48px;
  height: 60px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footer-links {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}

.footer-links a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding-bottom: 14px;
  color: #f2f2f2;
  font-size: 1rem;
  line-height: 1.45;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.footer-links a::after {
  content: "↗";
  margin-left: auto;
  padding-left: 14px;
  color: var(--gold);
  font-size: 1rem;
}

.footer-links a:hover {
  color: var(--gold);
  border-color: rgba(255, 196, 0, 0.28);
}

.footer-copy {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.to-top {
  width: 100%;
  margin-top: 22px;
  padding: 18px 20px;
  border: 0;
  border-radius: 18px;
  color: #050505;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffd84a, #f2af00);
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(245, 180, 0, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  justify-content: flex-end;
  padding: 16px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-panel {
  width: min(100%, 414px);
  min-height: calc(100vh - 32px);
  min-height: calc(100svh - 32px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 196, 0, 0.14), transparent 24%),
    linear-gradient(180deg, #0b0b0b 0%, #040404 100%);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45);
  transform: translateX(28px);
  transition: transform 0.28s ease;
}

.menu-overlay.active .menu-panel {
  transform: translateX(0);
}

.menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 26px;
}

.menu-kicker {
  color: var(--gold);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-links {
  display: grid;
  gap: 14px;
}

.menu-link {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 60px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.menu-link:hover {
  border-color: rgba(255, 196, 0, 0.32);
  background: rgba(255, 196, 0, 0.08);
}

@media (min-width: 431px) {
  body {
    padding: 18px 0;
  }

  .app {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 36px;
  }

  .hero-screen,
  .footer-screen {
    min-height: calc(100vh - 36px);
    min-height: calc(100svh - 36px);
  }

  .hero-screen:first-child {
    border-radius: 36px 36px 0 0;
  }

  .footer-screen:last-child {
    border-radius: 0 0 36px 36px;
  }
}

@media (max-width: 389px) {
  .topbar {
    min-height: 112px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-mark {
    width: 42px;
    height: 54px;
  }

  .brand-title,
  .footer-title {
    font-size: 0.88rem;
  }

  .brand-subtitle,
  .footer-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.03em;
  }

  .hero-title {
    font-size: clamp(52px, 16vw, 84px);
  }

  .hero-title-line {
    margin-top: -1px;
    padding-bottom: 16px;
  }

  .hero-title-line::after {
    height: 9px;
  }

  .footer-card {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 359px) {
  .hero-body {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-copy {
    font-size: 0.94rem;
  }

  .btn {
    min-height: 64px;
    font-size: 0.9rem;
  }

  .menu-link,
  .footer-links a {
    font-size: 0.94rem;
  }
}



.menu-btn { flex-direction: column; gap: 5px; }
.menu-btn span { margin: 0; width: 24px; height: 3px; background: #ffffff; opacity: 1; }


.footer-brand { justify-content: center; }
.footer-brand > div { text-align: center; }
.footer-links a { justify-content: center; text-align: center; }
.footer-links a::after { display: none; }
.footer-copy { text-align: center; }


.footer-copy { color: var(--gold); }


.footer-brand { justify-content: flex-start !important; }


.footer-brand { width: max-content; margin: 0 auto; justify-content: center !important; }
.footer-brand > div { text-align: left; }

.footer-brand {
  width: 100%;
  margin: 0;
  min-height: 60px;
  justify-content: center !important;
}

.footer-brand > div {
  text-align: center !important;
}


.hero-title { font-size: clamp(48px, 15vw, 82px) !important; }
.btn { min-height: 60px !important; padding: 14px 18px !important; font-size: 0.9rem !important; }


.btn { min-height: 56px !important; padding: 12px 16px !important; font-size: 0.86rem !important; }


.hero-title { font-size: clamp(42px, 13.5vw, 74px) !important; }


.hero-copy-block { width: 100%; display: flex; justify-content: center; }
.hero-title { align-items: center !important; text-align: center !important; }
.hero-title-line::after { left: 50% !important; transform: translateX(-50%) rotate(-2deg) !important; }


.hero-copy-block { transform: translateY(6px) !important; }


.btn { font-size: 0.92rem !important; }


.hero-title { letter-spacing: 0 !important; text-shadow: 0 5px 14px rgba(0,0,0,.72) !important; opacity: .94 !important; }


.hero-actions { justify-items: center !important; }
.hero-actions .btn { width: min(100%, 320px) !important; }


.btn-primary { font-size: 0.98rem !important; }


.btn-primary { font-size: 1.03rem !important; }


.hero-copy-block { transform: translateY(0px) !important; }


.hero-copy-block { transform: translateY(-8px) !important; }

