/* Pocket Theory — base styles */
:root {
  --base: #002f23;
  --base-2: #013b2d;
  --highlight: #b5ffe1;

  --text: #ffffff;
  --text-dim: #ffffff;

  --maxw: 780px; /* recommended content width */
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--base);
  color: var(--text);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(181, 255, 225, 0.65);
  outline-offset: 3px;
  border-radius: 10px;
}

.container {
  width: min(100% - 48px, var(--maxw));
  margin: 0 auto;
}

.site {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

/* Top bar */
.topbar {
  padding: 18px 0;
}

.brand-link {
  font-weight: 600;
  letter-spacing: 0.2px;
  color: rgba(181, 255, 225, 0.9);
}

/* Sections */
.section {
  position: relative;
}

.section--hero {
  background: var(--base);
  padding: 84px 0 76px;
  /* Tall but padded, not full-screen */
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.section--about {
  background: var(--base-2);
  padding: 110px 0 90px;
  min-height: 92vh; /* “almost full height” */
  display: flex;
  align-items: center;
}

/* Hero content */
.hero {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 14px;
}

.logo {
  width: clamp(88px, 9vw, 128px);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.h1 {
  margin: 0;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--highlight);
  font-weight: 700;
}

.tagline {
  margin: 0;
  font-size: 16px;
  color: var(--text-dim);
  font-weight: 500;
}

.cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 22px;
  border-radius: 12px;
  border: 1px solid rgba(181, 255, 225, 0.22);
  background: rgba(181, 255, 225, 0.92);
  color: #002f23;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: var(--shadow);

  transform: translateY(0);
  transition:
    transform 140ms ease,
    filter 140ms ease,
    box-shadow 140ms ease;
}

.cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.cta:active {
  transform: translateY(1px);
  filter: brightness(0.98);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

/* About section */
.about {
  text-align: center;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--highlight);
  font-weight: 600;
}

.lede {
  margin: 0;
  max-width: 62ch;
  color: #ffffff;
  opacity: 0.9;
  font-size: 16px;
}

/* Footer */
.footer {
  background: var(--base);
  padding: 18px 0 22px;
  border-top: 1px solid rgba(181, 255, 225, 0.09);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(181, 255, 225, 0.7);
  font-size: 14px;
}

.footer a {
  color: rgba(181, 255, 225, 0.8);
}

.footer a:hover {
  color: rgba(181, 255, 225, 1);
}

/* Privacy page */
.policy {
  padding: 42px 0 70px;
}

.policy h1 {
  margin: 18px 0 10px;
  font-size: clamp(38px, 5vw, 54px);
  line-height: 1.1;
  color: var(--highlight);
  letter-spacing: -0.02em;
}

.policy h2 {
  margin: 26px 0 10px;
  font-size: 18px;
  color: rgba(181, 255, 225, 0.92);
  letter-spacing: 0.1px;
}

.policy p,
.policy li {
  color: #ffffff;
  opacity: 0.9;
  font-size: 15px;
}

.policy .meta {
  margin: 0 0 14px;
  color: rgba(181, 255, 225, 0.68);
  font-size: 14px;
}

.policy ul {
  margin: 10px 0 16px;
  padding-left: 18px;
}

.policy .card {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(181, 255, 225, 0.08);
  border-radius: var(--radius);
  padding: 18px 18px;
}

/* Mobile tweak: show a bit of section 2 below hero */
@media (max-width: 640px) {
  .section--hero {
    min-height: 78vh; /* leaves a “peek” of section 2 */
    padding: 74px 0 54px;
  }

  .section--about {
    padding: 92px 0 74px;
    min-height: 88vh;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start; /* common experience: stack, left align */
  }
}
