/* ============================================
   GRAFITO — Editorial Streetwear Bio Link
   ============================================ */

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #050505;
  --bg-elev: #0c0c0c;
  --bg-card: rgba(255, 255, 255, 0.018);
  --line: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f5f5f5;
  --text-dim: #a0a0a0;
  --text-mute: #5e5e5e;
  --wa: #25d366;
  --radius: 16px;
  --radius-lg: 22px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --font-display: 'Bebas Neue', 'Oswald', Impact, sans-serif;
  --font-body: 'Manrope', 'Inter', system-ui, sans-serif;
  --font-tribal: 'Pirata One', 'UnifrakturMaguntia', 'Cinzel Decorative', serif;
  --font-mono: 'Space Grotesk', monospace;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  font-weight: 400;
  position: relative;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255,255,255,0.05), transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 110%, rgba(255,255,255,0.03), transparent 60%);
}

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: .28; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.vignette {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0,0,0,.55) 100%);
}

.shell {
  position: relative; z-index: 2;
  max-width: 460px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  text-align: center;
  padding: 16px 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .28em;
  color: var(--text-dim);
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255,255,255,.015);
  text-transform: uppercase;
  font-weight: 500;
}

.hero__badge .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--wa);
  box-shadow: 0 0 6px var(--wa);
  animation: pulse 2.4s var(--ease) infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.85); }
}

.hero__logo {
  margin: 44px auto 36px;
  width: 152px; height: 152px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

.hero__logo::before {
  content: '';
  position: absolute; inset: -16px;
  background: radial-gradient(circle, rgba(255,255,255,.06), transparent 65%);
  filter: blur(10px);
  z-index: -1;
}

.hero__logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.6));
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 16vw, 86px);
  letter-spacing: .18em;
  font-weight: 400;
  line-height: .95;
  margin-bottom: 32px;
  color: #fff;
  text-indent: .18em; /* compensate tracking center optical */
}

.hero__tagline {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
  line-height: 1.2;
}

.tagline__bold {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--text);
}

.tagline__italic {
  font-family: var(--font-tribal);
  font-size: 30px;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  letter-spacing: .01em;
  line-height: 1;
  margin-top: 4px;
  text-shadow: 0 2px 18px rgba(0,0,0,.6);
}

.hero__sub {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-mute);
  letter-spacing: .02em;
  margin-bottom: 36px;
  max-width: 280px;
}

.hero__quote {
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  min-height: 48px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn:active { transform: scale(.97); transition: transform .12s var(--ease); }

.btn--primary {
  background: #fff;
  color: #000;
  box-shadow: 0 6px 24px -10px rgba(255,255,255,.2);
}

.btn--primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(0,0,0,.08) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .9s var(--ease);
}

.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(255,255,255,.3); }
.btn--primary:hover::after { transform: translateX(100%); }
.btn--primary:active { transform: translateY(0); }

.btn--light {
  background: #fff;
  color: #0a0a0a;
  font-weight: 700;
  padding: 18px 32px;
  font-size: 14px;
  letter-spacing: .01em;
  box-shadow: 0 8px 28px -10px rgba(255,255,255,.18);
}

.btn--light:hover {
  transform: translateY(-2px);
  background: #f0f0f0;
  box-shadow: 0 14px 36px -10px rgba(255,255,255,.28);
}

.btn--light svg { color: var(--wa); }

/* ============================================
   LINK CARDS
   ============================================ */
.links {
  margin-top: 56px;
  display: flex; flex-direction: column; gap: 10px;
}

.link-card {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 20px;
  min-height: 64px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
  transition: all .4s var(--ease);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
}

.link-card:active {
  transform: scale(.98);
  background: rgba(255,255,255,.05);
  transition: transform .15s var(--ease), background .15s var(--ease);
}

.link-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 1px;
  background: var(--text);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .45s var(--ease);
}

.link-card:hover {
  background: rgba(255,255,255,.035);
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.link-card:hover::before { transform: scaleY(1); transform-origin: top; }
.link-card:hover .link-card__arrow { transform: translateX(3px); color: var(--text); }

.link-card__icon {
  width: 42px; height: 42px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--text);
}

.link-card--wa .link-card__icon { color: var(--wa); }

.link-card__body {
  flex: 1; display: flex; flex-direction: column; gap: 3px;
}

.link-card__label {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.link-card__sub {
  font-size: 11px;
  color: var(--text-mute);
  font-family: var(--font-mono);
  letter-spacing: .04em;
  font-weight: 400;
}

.link-card__arrow {
  color: var(--text-mute);
  transition: all .35s var(--ease);
}

/* ============================================
   IDENTITY
   ============================================ */
.identity { margin-top: 88px; }

.identity__head {
  margin-bottom: 32px;
  text-align: left;
}

.kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .32em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}

.identity__head h2 {
  font-weight: 400;
  font-size: clamp(34px, 9.5vw, 46px);
  letter-spacing: -.01em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.head__bold {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--text);
  text-transform: uppercase;
}

.head__italic {
  font-family: var(--font-tribal);
  font-style: normal;
  font-weight: 400;
  font-size: 1.15em;
  color: #fff;
  letter-spacing: .01em;
  text-transform: none;
  padding-left: .1em;
  line-height: .95;
  margin-top: 4px;
}

.identity__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.tile {
  display: flex; flex-direction: column;
  padding: 18px 18px 20px;
  background:
    linear-gradient(165deg, rgba(255,255,255,.035) 0%, rgba(255,255,255,0) 50%),
    linear-gradient(180deg, #0e0e0e 0%, #060606 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  aspect-ratio: 1 / 1.05;
  justify-content: space-between;
  transition: all .45s var(--ease);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  color: var(--text);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
}

.tile:active {
  transform: scale(.97);
  transition: transform .15s var(--ease);
}

.tile__cta {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text-dim);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2;
  transition: all .4s var(--ease);
}

.tile:hover .tile__cta {
  color: #0a0a0a;
  background: #fff;
  border-color: #fff;
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 6px 18px -6px rgba(255,255,255,.4);
}

/* Editorial photo (full-bleed) */
.tile__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  filter: grayscale(1) contrast(1.05) brightness(.55);
  transition: transform 1s var(--ease), filter .6s var(--ease);
}

.tile__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,5,5,.35) 0%, rgba(5,5,5,.85) 100%),
    linear-gradient(45deg, rgba(5,5,5,.4) 0%, transparent 70%);
}

/* Subtle grain texture inside tile */
.tile::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='1' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .07 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .5;
  mix-blend-mode: overlay;
  z-index: 0;
  pointer-events: none;
}

/* Diagonal accent line */
.tile::after {
  content: '';
  position: absolute;
  top: -10px; right: 30%;
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--line-strong), transparent);
  transform: rotate(-25deg);
  transform-origin: top;
  z-index: 0;
  opacity: .8;
}

.tile:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.tile:hover .tile__photo { transform: scale(1.08); filter: grayscale(1) contrast(1.1) brightness(.65); }

.tile__head {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  position: relative;
}

.tile__dash {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.tile__tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .2em;
  color: var(--text-mute);
  font-weight: 500;
}

.tile__num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .28em;
  color: var(--text-mute);
  font-weight: 500;
}

.tile__foot {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tile__kicker {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .3em;
  color: var(--text-mute);
  text-transform: uppercase;
  font-weight: 500;
}

.tile__label {
  font-family: var(--font-display);
  font-size: clamp(20px, 5.5vw, 26px);
  font-weight: 400;
  letter-spacing: .04em;
  line-height: .95;
  color: var(--text);
  text-transform: uppercase;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta { margin-top: 88px; }

.cta__card {
  position: relative;
  padding: 44px 28px 34px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #111 0%, #060606 100%);
  border: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
  box-shadow: 0 20px 50px -25px rgba(0,0,0,.6);
}

.cta__card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(255,255,255,.05), transparent 55%),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(255,255,255,.008) 14px 15px);
  pointer-events: none;
}

.cta__ribbon {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 26px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .34em;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 500;
}

.cta__ribbon span:first-child,
.cta__ribbon span:last-child {
  flex: 1; max-width: 44px;
  height: 1px; background: var(--line-strong);
}

.cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 11vw, 54px);
  letter-spacing: .08em;
  line-height: 1;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.cta__copy {
  font-size: 13.5px;
  color: var(--text-dim);
  margin-bottom: 30px;
  max-width: 300px;
  margin-left: auto; margin-right: auto;
  line-height: 1.6;
  font-weight: 400;
}

.cta__fine {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .25em;
  color: var(--text-mute);
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.foot {
  margin-top: 80px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.foot__mark {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: .32em;
  color: var(--text-mute);
  margin-bottom: 20px;
  opacity: .55;
  text-indent: .32em;
}

.foot p {
  font-size: 10.5px;
  color: var(--text-mute);
  letter-spacing: .04em;
  margin-bottom: 6px;
  font-weight: 400;
}

.foot__quote {
  margin-top: 16px !important;
  font-family: var(--font-tribal);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--text-dim);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 520px) {
  .shell { padding: 56px 32px 72px; max-width: 480px; }
  .hero__logo { width: 168px; height: 168px; }
}

@media (min-width: 768px) {
  .shell { max-width: 520px; }
  .identity__grid { gap: 12px; }
}
