:root {
  --teal: #008080;
  --teal-dark: #006d6d;
  --background: #e6f2f2;
  --background-light: #f7fbfb;
  --text: #2f3a3a;
  --muted: #5d6a6a;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--background);
  color: var(--text);
}

.hero {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: linear-gradient(
    135deg,
    var(--background) 0%,
    var(--background-light) 50%,
    var(--background) 100%
  );
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  width: 100%;
}

.hero-content,
.hero-image {
  flex: 1;
}

.eyebrow {
  color: var(--teal);
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1 {
  margin: 12px 0 20px;
  color: var(--teal);
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1;
}

h2 {
  max-width: 600px;
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.2;
}

p {
  max-width: 600px;
  font-size: 18px;
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 14px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.button-primary {
  background: var(--teal);
  color: var(--white);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.social-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(0, 128, 128, 0.3);
  border-radius: 999px;
  background: var(--white);
  color: var(--teal);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 18px rgba(0, 128, 128, 0.08);
}

.social-button:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.social-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-fanvue {
  border-color: var(--teal);
  background: #d9eeee;
}

.social-instagram {
  --accent: #E1306C;
}

.social-tiktok {
  --accent: #111111;
}

.social-youtube {
  --accent: #FF0000;
}

.social-linkedin {
  --accent: #0A66C2;
}

.social-fanvue {
  --accent: var(--teal);
}

.social-instagram:hover,
.social-tiktok:hover,
.social-youtube:hover,
.social-linkedin:hover,
.social-fanvue:hover {
  box-shadow: 0 10px 24px rgba(0, 128, 128, 0.16);
}

.ai-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

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

.hero-image img {
  width: 100%;
  max-width: 430px;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(0, 128, 128, 0.2);
}

.footer {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-top: 1px solid rgba(0, 128, 128, 0.15);
  background: var(--background-light);
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 30px 18px 50px;
  }

  .hero-inner {
    flex-direction: column-reverse;
    gap: 30px;
    text-align: center;
  }

  h2 {
    font-size: 25px;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .social-buttons {
    justify-content: center;
  }
}
