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

:root {
  --ocean: #379eda;
  --sea-deep: #1a5f8e;
  --horizon: #0b3a5e;
  --card-bg: rgba(247, 251, 255, 0.9);
  --card-ring: rgba(255, 255, 255, 0.65);
  --text-h: #0c2638;
  --text-b: #325870;
  --text-m: #5e859e;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

html,
body {
  min-height: 100vh;
  font-family: var(--font-sans);
  overflow-x: hidden;
}

.wc-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.wc-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .wc-scene {
    animation: none;
  }
}

main {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.25rem 1.5rem;
}

.card {
  background: var(--card-bg);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid var(--card-ring);
  border-radius: 3px;
  padding: 3rem 3rem 2.5rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow:
    0 6px 40px rgba(11, 58, 94, 0.2),
    0 1px 8px rgba(55, 158, 218, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.logo-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(55, 158, 218, 0.2),
    0 4px 18px rgba(55, 158, 218, 0.18);
  /*margin-bottom: 1.6rem;*/
  overflow: hidden;
}

.logo-ring img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.eyebrow {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 0.4rem;
}

h1 {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 300;
  letter-spacing: 0.045em;
  color: var(--horizon);
  line-height: 1.1;
}

h1 em {
  display: block;
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.1em;
  color: var(--text-b);
  margin-top: 0.2rem;
}

.tagline {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--sea-deep);
  line-height: 1.7;
  margin: 1.3rem 0 1.2rem;
}

.wave {
  display: block;
  margin: 0 auto 1.3rem;
  width: 100%;
  max-width: 300px;
  height: 16px;
  opacity: 0.45;
}

.about {
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--text-b);
  margin-bottom: 1.8rem;
}

.about strong {
  color: var(--text-h);
  font-weight: 500;
}

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  margin-top: 2.1rem;
}

.tag {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 2px;
  border: 1px solid rgba(55, 158, 218, 0.38);
  color: var(--ocean);
  background: rgba(55, 158, 218, 0.05);
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.88rem 1.5rem;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-shop {
  background: var(--ocean);
  color: #fff;
  box-shadow: 0 3px 14px rgba(55, 158, 218, 0.32);
}

.btn-shop:hover {
  background: var(--sea-deep);
  box-shadow: 0 5px 20px rgba(55, 158, 218, 0.42);
}

.btn-insta {
  background: transparent;
  color: var(--ocean);
  border: 1.5px solid var(--ocean);
}

.btn-insta:hover {
  background: rgba(55, 158, 218, 0.07);
}

footer {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 1.4rem 1rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.589);
}

footer a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 1px;
}

footer a:hover {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 500px) {
  .card {
    padding: 2.5rem 1.5rem 2rem;
  }

  h1 {
    font-size: 1.95rem;
  }

  .tagline {
    font-size: 0.95rem;
  }
}