:root {
  --ocean-depth: #1A545C;
  --tropical-mint: #4FCCC4;
  --icy-mist: #B0E0E8;
  --lavender-glow: #8C80FA;
  --spiced-ember: #FF6642;
  --white: #FFFFFF;
  --off-white: #F8F6F1;
  --text-dark: #1A545C;
  --muted-text: #66777A;
  --shadow-soft: 0 18px 45px rgba(26, 84, 92, 0.14);
  --font-primary: "degular", sans-serif;
  --font-readable: "degular", sans-serif;
  --font-badge: "dynapuff", sans-serif;
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 142px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--off-white);
  color: var(--text-dark);
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.landing-page {
  min-height: 100vh;
  background: var(--ocean-depth);
}

.landing-header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  padding: 16px 20px;
}

.landing-header .language-toggle {
  min-height: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;
  border: 1px solid rgba(176, 224, 232, 0.42);
  border-radius: 999px;
  color: var(--icy-mist);
}

.landing-header .lang-button {
  min-width: 36px;
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--icy-mist);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.88rem;
}

.landing-header .lang-button.is-active {
  background: var(--icy-mist);
  color: var(--ocean-depth);
}

.landing-hero {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 36px;
  padding: 32px 20px;
  text-align: center;
}

.landing-logo {
  width: min(68vw, 280px);
  height: auto;
}

.landing-cta {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px 15px;
  border-radius: 50px;
  background: var(--spiced-ember);
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, background-color 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .landing-cta:hover {
    transform: translateY(-2px);
    background: #f45c3a;
  }
}

.cookie-banner {
  position: fixed;
  z-index: 60;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  background: var(--ocean-depth);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--white);
  font-size: 0.95rem;
}

.cookie-banner button {
  min-height: 44px;
  border: 0;
  border-radius: 50px;
  padding: 10px 22px;
  background: var(--spiced-ember);
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
}

@media (min-width: 680px) {
  .cookie-banner {
    left: auto;
    max-width: 620px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 999px;
    padding: 14px 14px 14px 22px;
  }

  .cookie-banner button {
    min-width: 72px;
  }
}
