/* Meetisi OAuth application home — static styles matching site brand */

:root {
  --background: #e9fbff;
  --foreground: #082b5f;
  --brand: #35d6c8;
  --brand-ink: #082b5f;
  --sunny: #ffd23f;
  --sunny-shadow: #e6b800;
  --surface: #ffffff;
  --muted: #4a6a8a;
  --sky: #e9fbff;
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--foreground);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.55;
  background:
    radial-gradient(900px 480px at 8% -8%, #b8f4ef 0%, transparent 55%),
    radial-gradient(700px 420px at 100% 0%, #fff3b0 0%, transparent 48%),
    radial-gradient(600px 360px at 70% 100%, #ffd6cc 0%, transparent 45%),
    var(--background);
}

a {
  color: var(--brand-ink);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: #0a3a7a;
}

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

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--brand-ink);
  text-decoration: none;
}

.brand:hover {
  color: var(--brand-ink);
}

.brand-name {
  font-family: "Fredoka", ui-rounded, system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--sunny);
  color: var(--brand-ink);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 800;
  padding: 0.6rem 1.15rem;
  text-decoration: none;
  box-shadow: 0 3px 0 var(--sunny-shadow);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease;
}

.btn-login:hover {
  color: var(--brand-ink);
  filter: brightness(1.03);
  transform: translateY(-1px);
  box-shadow: 0 4px 0 var(--sunny-shadow);
}

.btn-login:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 var(--sunny-shadow);
}

.page {
  flex: 1;
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 3rem;
}

.hero {
  margin-bottom: 2.5rem;
}

.otter-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.otter {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(8, 43, 95, 0.08));
}

.bubble {
  max-width: 14rem;
  margin: 0;
  padding: 0.55rem 0.85rem;
  border-radius: 1rem 1rem 1rem 0.25rem;
  background: var(--surface);
  color: var(--brand-ink);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 3px 0 rgba(8, 43, 95, 0.08);
}

.page h1 {
  margin: 0;
  font-family: "Fredoka", ui-rounded, system-ui, sans-serif;
  font-size: clamp(2.75rem, 8vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--brand-ink);
}

.tagline {
  margin: 0.75rem 0 0;
  font-family: "Fredoka", ui-rounded, system-ui, sans-serif;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--brand-ink);
}

.lede {
  margin: 1rem 0 0;
  max-width: 36rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--brand-ink);
}

.price-note {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--muted);
}

.panel {
  margin-top: 2rem;
  padding: 1.5rem 1.35rem;
  border: 2px solid rgba(8, 43, 95, 0.08);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 4px 0 rgba(8, 43, 95, 0.05);
}

.panel h2 {
  margin: 0 0 0.65rem;
  font-family: "Fredoka", ui-rounded, system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--brand-ink);
}

.panel h2 + p,
.panel p + p {
  margin-top: 0.75rem;
}

.panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.panel p strong {
  color: var(--brand-ink);
}

.panel + .panel {
  margin-top: 1rem;
}

.policies {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.policies li + li {
  margin-top: 0.4rem;
}

.site-footer {
  border-top: 2px solid rgba(8, 43, 95, 0.05);
  background: rgba(255, 255, 255, 0.6);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.25rem;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--brand-ink);
}

.copyright {
  margin: 0;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .otter {
    width: 88px;
    height: 88px;
  }

  .panel {
    padding: 1.75rem 1.75rem;
  }
}
