@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,500;9..144,600&display=swap");

:root {
  --ink: #3f465d;
  --text: #3f465d;
  --muted: #747b90;
  --rose: #eabfc8;
  --rose-deep: #b9788a;
  --sky: #cce2ee;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  min-width: 320px;
  height: 100%;
  min-height: 100%;
}

html {
  background: #f7f3f1;
}

body {
  color: var(--text);
  font-family: "DM Sans", Arial, sans-serif;
  background:
    radial-gradient(circle at 5% 8%, rgba(234, 191, 200, 0.56), transparent 30%),
    radial-gradient(circle at 94% 18%, rgba(204, 226, 238, 0.62), transparent 28%),
    radial-gradient(circle at 62% 96%, rgba(217, 214, 238, 0.5), transparent 32%),
    linear-gradient(145deg, #fffaf6, #f5f2f6 55%, #f6fbfc);
  background-attachment: fixed;
}

body::before {
  position: fixed;
  z-index: 0;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, transparent 48%, rgba(255, 255, 255, 0.38) 49%, transparent 50%);
  background-size: 90px 90px;
  pointer-events: none;
}

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

.app-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 320px;
  height: 100%;
  min-height: 100%;
  padding-bottom: 30px;
  overflow-x: hidden;
}

.container {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  width: min(100% - 28px, 760px);
  height: 100%;
  min-height: 100%;
  margin: 0 auto;
}

.start {
  position: relative;
  display: flex;
  min-height: min(780px, calc(100vh - 110px));
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(22px, 5vw, 48px) clamp(18px, 5vw, 42px);
  text-align: center;
  animation: rise-in 0.65s ease both;
}

.start__eyebrow {
  margin-bottom: 12px;
  padding: 7px 13px;
  border: 1px solid rgba(185, 120, 138, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--rose-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.start__title {
  max-width: 590px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(38px, 7.5vw, 62px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.start__visual {
  position: relative;
  display: grid;
  width: min(74vw, 330px);
  margin: 8px auto 2px;
  place-items: center;
}

.start__img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: 250px;
  animation: brain-float 4.4s ease-in-out infinite;
}

.start__orb {
  position: absolute;
  width: 55%;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(38px);
  opacity: 0.32;
}

.start__orb--blue {
  left: 3%;
  background: var(--sky);
}

.start__orb--coral {
  right: 3%;
  background: var(--rose);
}

.start__text {
  max-width: 540px;
  color: var(--muted);
  font-size: clamp(15px, 2.6vw, 18px);
  font-weight: 400;
  line-height: 1.55;
}

.start__note {
  margin-top: 10px;
  color: #9297a7;
  font-size: 12px;
}

.start__btn-wrapper {
  width: 100%;
  margin: 22px auto 0;
}

.start-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  min-height: 58px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #6d667e;
  box-shadow: 0 12px 28px rgba(108, 96, 123, 0.22);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  animation: soft-pulse 3s ease-in-out infinite;
}

.start-button:hover {
  transform: translateY(-2px);
  background: #5e576f;
}

.start-button[aria-disabled="true"] {
  pointer-events: none;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 550px;
  padding: 0 16px;
  margin: 0 auto;
  color: gray;
  font-size: 11px;
  line-height: normal;
}

.footer p {
  margin: 0;
  text-align: center;
}

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

@keyframes brain-float {
  0%, 100% {
    transform: translateY(0);
    filter: drop-shadow(0 18px 25px rgba(167, 143, 174, 0.18));
  }

  50% {
    transform: translateY(-7px);
    filter: drop-shadow(0 24px 29px rgba(189, 157, 176, 0.24));
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes soft-pulse {
  0%, 100% {
    box-shadow: 0 12px 28px rgba(159, 126, 146, 0.18);
  }

  50% {
    box-shadow: 0 17px 34px rgba(159, 126, 146, 0.29);
  }
}

@media (orientation: landscape) {
  .start {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 600px) {
  div#CybotCookiebotDialog {
    position: fixed !important;
    top: auto !important;
    right: 8px !important;
    bottom: 8px !important;
    left: 8px !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    max-height: 75dvh !important;
    margin: 0 !important;
    transform: none !important;
    scale: 1 !important;
    border-radius: 16px !important;
    overflow-y: auto !important;
  }
}