* { box-sizing: border-box; }

html, body {
  margin: 0;
  width: 100%;
  min-height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f8f5ef;
  overflow: hidden;
}

.page {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f8f5ef;
}

.content {
  position: relative;
  z-index: 10;
  width: 90%;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  transform: translateY(-2vh);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 61px;
}

.brand {
  color: #914814;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -1.8px;
  line-height: 1;
}

.coconut-logo {
  position: relative;
  width: 79px;
  height: 67px;
  margin-right: 4px;
}

.coconut-shell {
  position: absolute;
  width: 49px;
  height: 47px;
  left: 19px;
  top: 18px;
  border-radius: 50% 45% 48% 52%;
  background: #914814;
  transform: rotate(40deg);
}

.coconut-shell::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #eadbc2;
}

.coconut-inside {
  position: absolute;
  width: 25px;
  height: 25px;
  left: 10px;
  top: 9px;
  border-radius: 50%;
  background: #fffdf8;
  z-index: 2;
}

.leaf-logo {
  position: absolute;
  left: 2px;
  width: 31px;
  height: 10px;
  border-radius: 100% 0 100% 0;
  background: #8e9515;
  transform-origin: right center;
}

.l1 { top: 15px; transform: rotate(-43deg); }
.l2 { top: 24px; transform: rotate(-18deg); }
.l3 { top: 31px; transform: rotate(8deg); }

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #aaa29a;
  margin-bottom: 43px;
}

h1 {
  margin: 0;
  color: #3e1d0c;
  font-size: clamp(58px, 6vw, 88px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -3.5px;
}

.tagline {
  margin-top: 30px;
  padding: 8px 10px;
  color: #53627b;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.3;
  font-weight: 400;
}

.launch {
  margin-top: 31px;
  color: #9a651e;
  font-size: 17px;
  line-height: 1.4;
}

/* Background decorations */
.leaf, .coconut-bg {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.leaf {
  background: #e3ded5;
  opacity: .42;
}

.leaf-1 {
  width: 116px;
  height: 245px;
  left: -5px;
  top: 5px;
  border-radius: 100% 0 100% 0;
  transform: rotate(15deg);
}

.leaf-1::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 255px;
  left: 57px;
  top: -5px;
  background: #f8f5ef;
  transform: rotate(13deg);
}

.leaf-2 {
  width: 80px;
  height: 155px;
  right: 22%;
  top: 32px;
  border-radius: 100% 0 100% 0;
  transform: rotate(43deg);
}

.leaf-3 {
  width: 95px;
  height: 220px;
  right: -8px;
  top: 49%;
  border-radius: 100% 0 100% 0;
  transform: rotate(-8deg);
}

.leaf-3::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 225px;
  left: 47px;
  top: -3px;
  background: #f8f5ef;
}

.coconut-bg {
  width: 122px;
  height: 122px;
  border-radius: 50%;
  opacity: .42;
  background: radial-gradient(circle,
    #eee9df 0 25%,
    #e4dfd5 26% 38%,
    #eee9df 39% 58%,
    #e4dfd5 59% 100%);
}

.coconut-1 { left: 8%; bottom: 10%; }
.coconut-2 { right: 7%; bottom: 3%; }

@media (max-width: 600px) {
  .content { width: 94%; transform: translateY(-1vh); }
  .logo { margin-bottom: 45px; }
  .brand { font-size: 36px; }
  .coconut-logo { transform: scale(.82); transform-origin: right center; margin-right: -5px; }
  .dot { margin-bottom: 32px; }
  h1 { font-size: clamp(48px, 14vw, 68px); letter-spacing: -2.5px; }
  .tagline { margin-top: 23px; font-size: 19px; max-width: 350px; }
  .launch { margin-top: 25px; font-size: 15px; }
  .leaf-1 { width: 75px; height: 160px; }
  .leaf-2 { right: 4%; width: 55px; height: 100px; }
  .leaf-3 { width: 65px; height: 150px; }
  .coconut-bg { width: 82px; height: 82px; }
  .coconut-1 { left: -5%; bottom: 8%; }
  .coconut-2 { right: -4%; bottom: 2%; }
}

/* Social media links */
.social-section {
  margin-top: 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.social-title {
  color: #53627b;
  font-size: 13px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 13px;
  opacity: .82;
}
.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.social-link {
  width: 39px;
  height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(145, 72, 20, .18);
  border-radius: 50%;
  color: #914814;
  background: rgba(255, 253, 248, .72);
  box-shadow: 0 4px 14px rgba(62, 29, 12, .06);
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-link svg .fill-dot { stroke: none; }
.social-link svg .play { fill: #fffdf8; stroke: none; }
.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-3px);
  color: #fffdf8;
  background: #914814;
  box-shadow: 0 8px 20px rgba(145, 72, 20, .18);
  outline: none;
}
.social-link:focus-visible {
  box-shadow: 0 0 0 3px rgba(142, 149, 21, .28), 0 8px 20px rgba(145, 72, 20, .18);
}
@media (max-width: 600px) {
  .social-section { margin-top: 23px; }
  .social-title { font-size: 12px; margin-bottom: 11px; }
  .social-links { gap: 9px; }
  .social-link { width: 36px; height: 36px; }
  .social-link svg { width: 17px; height: 17px; }
}

