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

:root {
  --red: #e60000;
  --red-dark: #cc0000;
  --bg: #0a0a0a;
  --text: #ffffff;
  --text-dim: #888;
}

body {
  font-family: 'Space Grotesk', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ============ ANIMATIONS ============ */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-25px) rotate(2deg); }
}

@keyframes smokeMove {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.55; }
  50%      { transform: translateY(-30px) scale(1.05); opacity: 0.7; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes cardEnter {
  from { opacity: 0; transform: scale(0.8) translateY(60px) rotate(-3deg); }
  to   { opacity: 1; transform: scale(1) translateY(0) rotate(var(--card-rotate, 0deg)); }
}

@keyframes glowPulse {
  0%, 100% {
    text-shadow: 0 0 5px rgba(230, 0, 0, 0.4);
    box-shadow: 0 0 5px rgba(230, 0, 0, 0.3);
  }
  50% {
    text-shadow: 0 0 15px rgba(230, 0, 0, 1);
    box-shadow: 0 0 20px rgba(230, 0, 0, 0.7);
  }
}

@keyframes launchGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(255,255,255,0.3), 0 0 40px rgba(230,0,0,0.2); }
  50%      { text-shadow: 0 0 30px rgba(255,255,255,0.7), 0 0 60px rgba(230,0,0,0.4); }
}

/* ============ SMOKE BACKGROUND ============ */
.smoke-bg {
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 600px 1000px at 30% 50%, rgba(180,0,0,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 500px 800px at 70% 40%, rgba(140,0,0,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 400px 600px at 50% 80%, rgba(120,0,0,0.3) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: smokeMove 10s ease-in-out infinite;
}

/* ============ HEADER ============ */
header {
  position: fixed;
  top: 20px;
  left: 30px;
  right: 30px;
  z-index: 1000;
  padding: 18px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 2px;
}

.logo {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  letter-spacing: 4px;
  color: #fff;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 40px;
}

nav a {
  color: #999;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}

nav a:hover { color: #fff; }

nav a.active {
  color: var(--red);
}

nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
}

.order-btn {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 11px 28px;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.order-btn:hover { transform: scale(1.05); background: #ff1a1a; }

.order-btn.outline {
  background: transparent;
  border: 2px solid #fff;
}

/* ============ PAGE LAYOUT ============ */
.page {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
}

.page-inner {
  flex: 1;
  position: relative;
  z-index: 2;
  padding: 130px 60px 60px;
  display: flex;
  align-items: center;
}

/* ============ FOOTER ============ */
.site-footer {
  padding: 30px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.site-footer .ft-logo {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
}

.site-footer .ft-links {
  display: flex;
  gap: 28px;
}

.site-footer .ft-links a {
  color: #777;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.site-footer .ft-links a:hover { color: var(--red); }

.site-footer .ft-status {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #777;
  text-transform: uppercase;
}

/* ============ BOTTLE FLOATING ============ */
.bottle-float {
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.6));
}

/* ============ HOME PAGE (DRINK THE FUTURE) ============ */
.home-page { background: #0a0a0a; }

.home-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1fr;
  gap: 50px;
  align-items: center;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.home-left {
  animation: slideInLeft 1s ease-out;
}

.home-left h1 {
  font-family: 'Anton', sans-serif;
  font-size: 68px;
  letter-spacing: 1px;
  line-height: 1.05;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.home-left h1 .future {
  color: var(--red);
  font-style: italic;
}

.home-left .desc {
  font-size: 14px;
  line-height: 1.7;
  color: #aaa;
  border-left: 3px solid var(--red);
  padding-left: 15px;
  margin-bottom: 40px;
  max-width: 320px;
}

.intensity-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: #777;
  margin-bottom: 14px;
}

.intensity-btns {
  display: flex;
  gap: 14px;
}

.intensity-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #333;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.intensity-btn svg { width: 18px; height: 18px; }

.intensity-btn.active {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 20px rgba(230,0,0,0.6);
}

.intensity-btn:hover { transform: scale(1.15); border-color: var(--red); }

.home-center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.home-center .bottle-float img {
  width: 320px;
  height: auto;
  display: block;
}

.home-center::before {
  content: 'AUATER';
  position: absolute;
  font-family: 'Anton', sans-serif;
  font-size: 180px;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.03);
  z-index: 0;
  white-space: nowrap;
  font-style: italic;
}

.home-right {
  text-align: right;
  animation: slideInRight 1s ease-out 0.3s backwards;
}

.home-right h2 {
  font-family: 'Anton', sans-serif;
  font-size: 80px;
  letter-spacing: 2px;
  line-height: 0.95;
  font-style: italic;
  animation: launchGlow 3s ease-in-out infinite;
}

/* ============ SHOP PAGE (AUATER HERO) ============ */
.shop-page {
  background: radial-gradient(ellipse at center 40%, #b00000 0%, #6a0000 60%, #2a0000 100%);
}

.shop-page .smoke-bg { display: none; }

.shop-page .page-inner { padding: 130px 30px 30px; }

.shop-content {
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.shop-hero {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 30px;
  animation: fadeIn 1s ease-out;
}

.auater-title {
  font-family: 'Anton', sans-serif;
  font-size: 220px;
  font-weight: 400;
  letter-spacing: -5px;
  line-height: 0.95;
  color: #fff;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.shop-bottle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
}

.shop-bottle img {
  height: 480px;
  width: auto;
  display: block;
}

.shop-tagline {
  font-family: 'Anton', sans-serif;
  font-size: 42px;
  letter-spacing: 2px;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.3s backwards;
  text-transform: uppercase;
  line-height: 1.1;
}

.shop-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out 0.5s backwards;
  flex-wrap: wrap;
}

.shop-feature {
  padding: 12px 26px;
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
}

.shop-feature:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-5px);
  border-color: #fff;
}

.shop-url {
  font-family: 'Anton', sans-serif;
  font-size: 100px;
  letter-spacing: -2px;
  animation: fadeInUp 1s ease-out 0.7s backwards;
  text-transform: uppercase;
  color: #f5f5f5;
}

.shop-page .site-footer { background: rgba(0,0,0,0.4); }

/* ============ COMMUNITY PAGE (TEAM) ============ */
.community-page { background: #0a0a0a; }

.community-content {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.community-header {
  text-align: center;
  margin-bottom: 70px;
}

.community-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--red);
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid var(--red);
  padding: 6px 18px;
  border-radius: 30px;
  animation: glowPulse 2s ease-in-out infinite;
}

.community-header h1 {
  font-family: 'Anton', sans-serif;
  font-size: 100px;
  letter-spacing: -2px;
  line-height: 0.95;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.community-header h1 .silver {
  background: linear-gradient(180deg, #fff 0%, #888 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.community-header p {
  font-size: 13px;
  color: #aaa;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  perspective: 1200px;
}

.team-card {
  background: linear-gradient(180deg, rgba(40,15,15,0.6) 0%, rgba(20,10,10,0.95) 100%);
  border: 1px solid rgba(230, 0, 0, 0.15);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: cardEnter 0.8s ease-out backwards;
  border-radius: 6px;
}

.team-card:nth-child(1) { animation-delay: 0.1s; --card-rotate: -3deg; transform: rotate(-3deg); }
.team-card:nth-child(2) { animation-delay: 0.25s; --card-rotate: 0deg; margin-top: -30px; }
.team-card:nth-child(3) { animation-delay: 0.4s; --card-rotate: 3deg; transform: rotate(3deg); }

.team-card:hover {
  transform: rotate(0deg) translateY(-25px) scale(1.06) !important;
  border-color: var(--red);
  box-shadow: 0 30px 80px rgba(230, 0, 0, 0.3), 0 0 0 2px rgba(230, 0, 0, 0.5);
  z-index: 10;
}

.team-cards:hover .team-card:not(:hover) {
  opacity: 0.5;
  filter: blur(2px);
  transform: scale(0.92) rotate(var(--card-rotate, 0deg)) !important;
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
  background: #111;
}

.card-img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.6s;
  display: block;
}

.team-card:hover .card-img-wrap img {
  transform: scale(1.08);
}

.card-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--red);
  padding: 5px 12px;
  font-size: 9px;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 2px;
  color: #fff;
}

.card-body {
  padding: 24px;
}

.card-name {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.card-role {
  font-size: 9px;
  letter-spacing: 2px;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.card-desc {
  font-size: 12px;
  line-height: 1.7;
  color: #aaa;
  margin-bottom: 22px;
}

.card-email-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-email-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: glowPulse 2s ease-in-out infinite;
}

.card-email-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--red);
}

.card-email {
  font-size: 11px;
  color: var(--red);
  letter-spacing: 1.5px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  animation: glowPulse 2s ease-in-out infinite;
  transition: all 0.3s;
}

.card-email:hover {
  color: #ff3030;
  letter-spacing: 2px;
}

/* ============ JOIN PAGE ============ */
.join-page { background: #0a0a0a; }

.join-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.join-top {
  text-align: center;
  margin-bottom: 50px;
}

.join-top h1 {
  font-family: 'Anton', sans-serif;
  font-size: 60px;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
  animation: fadeInUp 0.8s ease-out;
}

.join-top p {
  font-size: 13px;
  color: #aaa;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.join-bottle-area {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: slideInLeft 0.8s ease-out;
}

.join-bottle {
  position: relative;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.7));
}

.join-bottle img {
  width: 320px;
  height: auto;
  display: block;
}

.bottle-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  position: absolute;
  animation: glowPulse 2s ease-in-out infinite;
}

.bottle-dot-1 { top: 25%; left: -5%; }
.bottle-dot-2 { bottom: 30%; right: 0%; }

.form-container {
  background: linear-gradient(180deg, rgba(40,15,15,0.5) 0%, rgba(15,10,10,0.9) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 45px;
  border-radius: 4px;
  animation: slideInRight 0.8s ease-out;
}

.form-container h2 {
  font-family: 'Anton', sans-serif;
  font-size: 38px;
  letter-spacing: 1px;
  margin-bottom: 35px;
  text-transform: uppercase;
}

.form-group {
  margin-bottom: 28px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 2.5px;
  color: #999;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-group input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding: 10px 0;
  color: #fff;
  font-size: 14px;
  font-family: 'Space Grotesk', sans-serif;
  transition: border-color 0.3s;
}

.form-group input:focus {
  outline: none;
  border-bottom-color: var(--red);
}

.send-btn {
  width: 100%;
  padding: 18px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 11px;
  letter-spacing: 2.5px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 15px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.send-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .home-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .home-left { text-align: center; }
  .home-left .desc { margin: 0 auto 40px; }
  .home-right { text-align: center; }
  .auater-title { font-size: 130px; }
  .shop-bottle img { height: 300px; }
  .shop-url { font-size: 60px; }
  .community-header h1 { font-size: 60px; }
  .team-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .team-card { transform: none !important; margin-top: 0 !important; }
  .join-grid { grid-template-columns: 1fr; }
  .join-top h1 { font-size: 36px; }
  header { left: 15px; right: 15px; padding: 15px 20px; }
  nav { gap: 18px; }
  nav a { font-size: 9px; letter-spacing: 1.5px; }
  .page-inner { padding: 130px 25px 30px; }
}

@media (max-width: 700px) {
  header { flex-wrap: wrap; gap: 10px; }
  .order-btn { padding: 8px 18px; }
  .auater-title { font-size: 80px; }
  .shop-bottle img { height: 200px; }
  .home-left h1 { font-size: 48px; }
  .site-footer { flex-direction: column; gap: 15px; text-align: center; }
}
