:root {
  --ink: #0c0d11;
  --deep: #06111c;
  --white: #fff;
  --soft-white: rgba(255, 255, 255, 0.86);
  --line: rgba(255, 255, 255, 0.62);
  --font-sans: "Manrope", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Newsreader", Georgia, serif;
  --font-mono: "SF Mono", "Geist Mono", "JetBrains Mono", "IBM Plex Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-sans);
  letter-spacing: 0;
}

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

a,
button,
input {
  transition:
    color 220ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 220ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 220ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 220ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.86);
  outline-offset: 4px;
}

button:active,
.about-button:active {
  transform: scale(0.98);
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 5;
  padding: 10px 14px;
  border-radius: 6px;
  color: #07121d;
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-72px);
}

.skip-link:focus {
  transform: translateY(0);
}

.stage {
  position: relative;
  width: 100vw;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  border-radius: 0;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  padding: 31px 37px 35px;
  box-shadow: 0 1px 0 rgba(9, 12, 16, 0.08);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("./islands-bg-optimized.jpg");
  background-size: cover;
  background-position: 50% 43%;
  filter: saturate(1.02) contrast(1.01);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03), transparent 42%, rgba(0, 8, 18, 0.11) 66%, rgba(0, 8, 18, 0.48) 100%),
    radial-gradient(circle at 72% 17%, rgba(255, 230, 180, 0.12), transparent 34%);
  pointer-events: none;
}

.site-header,
.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.site-header {
  font-size: 13px;
  line-height: 1;
  transform: translateY(-7px);
}

.site-header p,
.site-footer p,
.signup p,
.intro-copy p {
  margin: 0;
}

.header-mark {
  width: 78px;
  height: auto;
  display: block;
  transform: translateX(-9px);
}

.hero {
  align-self: start;
  justify-self: center;
  width: 100%;
  padding-top: clamp(22px, calc(8.6svh - 50px), 44px);
  text-align: center;
}

.hero-wordmark {
  width: min(500px, 60vw);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.24));
}

.intro-copy {
  margin-top: 19px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.88);
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.34);
}

.signup {
  justify-self: center;
  align-self: end;
  width: min(263px, 100%);
  margin-bottom: 69px;
  color: var(--soft-white);
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.42);
}

.signup form {
  position: relative;
  height: 42px;
  margin-top: 17px;
  padding: 4px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 17, 30, 0.21);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.signup input {
  min-width: 0;
  flex: 1;
  height: 100%;
  border: 0;
  outline: 0;
  padding: 0 18px;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-size: 12px;
}

.signup input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.signup button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: rgba(3, 9, 18, 0.78);
  font: inherit;
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease;
}

.signup button:hover,
.signup button:focus-visible {
  transform: translateX(2px);
  background: rgba(3, 9, 18, 0.95);
}

.form-status {
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  width: max-content;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-4px);
}

form[data-sent="true"] .form-status {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.honey-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  color: var(--white);
  font-size: 11px;
  line-height: 1.1;
}

.footer-mark {
  width: 53px;
  height: auto;
  display: block;
  margin-bottom: 21px;
}

.site-footer nav {
  display: flex;
  align-items: center;
  gap: 29px;
}

.site-footer a,
.site-footer p {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.site-footer > p {
  align-self: end;
  margin-bottom: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 700px) {
  body {
    padding: 12px;
  }

  .stage {
    width: calc(100vw - 24px);
    min-height: calc(100svh - 24px);
    border-radius: 26px;
    padding: 24px 26px 29px;
  }

  .hero-bg {
    background-position: 50% 50%;
  }

  .header-mark {
    width: 78px;
  }

  .site-header {
    font-size: 12px;
  }

  .hero {
    padding-top: 13svh;
  }

  .hero-wordmark {
    width: min(440px, 80vw);
  }

  .intro-copy {
    margin-top: 18px;
    font-size: 14px;
  }

  .signup {
    margin-bottom: 46px;
  }

  .site-footer {
    display: grid;
    gap: 18px;
  }

  .footer-mark {
    margin-bottom: 17px;
  }

  .site-footer nav {
    gap: 24px;
  }

  .site-footer > p {
    justify-self: start;
  }
}

@media (max-height: 760px) {
  .hero {
    padding-top: 10svh;
  }

  .signup {
    margin-bottom: 36px;
  }
}

.about-body {
  display: block;
  min-height: 100svh;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  background: var(--deep);
}

.about-body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 44%, transparent 68%),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px);
  background-size: auto, 4px 4px;
  mix-blend-mode: soft-light;
}

.about-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url("./islands-bg-optimized.jpg");
  background-size: cover;
  background-position: 50% 34%;
  filter: saturate(0.95) contrast(0.98);
}

.about-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 9, 17, 0.44), rgba(3, 9, 17, 0.72) 42%, var(--deep) 100%),
    radial-gradient(circle at 72% 9%, rgba(255, 217, 168, 0.24), transparent 34%);
}

.about-nav,
.about-footer {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.about-nav {
  padding: 28px 0;
}

.about-nav > a:last-child,
.about-footer > a:last-child,
.about-home-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.about-nav > a:last-child:hover,
.about-footer > a:last-child:hover,
.about-home-link:hover {
  color: #fff;
}

.about-brand {
  display: inline-block;
  color: #fff;
  line-height: 1;
}

.about-brand img {
  width: 98px;
  height: auto;
  display: block;
  filter: drop-shadow(0 9px 24px rgba(0, 0, 0, 0.22));
}

.about-page {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 112px) 0 88px;
}

.about-hero,
.about-section {
  width: min(720px, 100%);
}

.about-hero {
  min-height: min(720px, calc(100svh - 98px));
  display: grid;
  align-content: center;
  padding-bottom: 72px;
}

.about-kicker {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-hero h1,
.about-section h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.about-hero h1 {
  max-width: 680px;
  font-size: clamp(48px, 6.6vw, 84px);
  line-height: 0.98;
}

.about-lede,
.about-copy,
.closing-cta > p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
  text-wrap: pretty;
}

.about-lede {
  margin-top: 32px;
  max-width: 700px;
}

.about-lede p,
.about-copy p {
  margin: 0;
}

.about-lede p + p,
.about-copy p + p {
  margin-top: 18px;
}

.about-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.about-button,
.about-form button {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 7px;
  color: #08101b;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 56px rgba(4, 16, 28, 0.2);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.about-button:hover,
.about-form button:hover {
  background: #fff;
}

.about-button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 22px;
}

.about-section {
  margin-top: clamp(96px, 13vw, 156px);
}

.about-section h2 {
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1;
}

.about-copy,
.about-list,
.closing-cta > p,
.about-form {
  margin-top: 28px;
}

.about-divider {
  width: 100%;
  height: 1px;
  margin: 44px 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
}

.about-section-wide {
  width: 100%;
}

.about-section-heading {
  width: min(720px, 100%);
}

.web-cards {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 16px;
}

.web-card {
  min-height: 244px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)),
    rgba(6, 17, 28, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 24px 80px rgba(4, 16, 28, 0.2);
  backdrop-filter: blur(18px);
  display: grid;
  align-content: start;
  gap: 18px;
  overflow: hidden;
  position: relative;
}

.web-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.web-card h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
}

.web-card > p:not(.web-note) {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.55;
}

.web-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.web-card-top .web-label {
  margin: 0;
}

.web-label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(2, 10, 18, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.web-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.84);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.web-icon svg {
  width: 25px;
  height: 25px;
}

.web-icon path,
.web-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.web-note {
  align-self: end;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.35;
}

.about-list {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.45;
}

.about-list li {
  position: relative;
  padding-left: 28px;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 0 18px rgba(255, 218, 166, 0.3);
  transform: rotate(45deg);
}

.compact-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.closing-cta {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.06)),
    rgba(5, 16, 28, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 24px 80px rgba(4, 16, 28, 0.18);
  backdrop-filter: blur(18px);
}

.closing-cta > p {
  margin-bottom: 0;
}

.about-form {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 640px;
  position: relative;
}

.about-field {
  flex: 1;
  min-width: 0;
}

.about-field label {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 600;
}

.about-field p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.35;
}

.about-form input {
  min-width: 0;
  width: 100%;
  flex: 1;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  outline: 0;
  padding: 0 18px;
  color: #fff;
  background: rgba(2, 10, 18, 0.34);
  font: inherit;
  font-size: 14px;
}

.about-form input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.about-form button {
  height: 48px;
  padding: 0 20px;
  margin-top: 29px;
  white-space: nowrap;
}

.about-form .form-status {
  left: 0;
  top: calc(100% + 13px);
  transform: translateY(-4px);
}

.about-form[data-sent="true"] .form-status {
  transform: translateY(0);
}

.about-footer {
  padding: 0 0 34px;
}

.not-found-page {
  width: min(720px, calc(100% - 48px));
  min-height: calc(100svh - 98px);
  margin: 0 auto;
  display: grid;
  align-content: center;
  padding-bottom: 90px;
}

.not-found-page h1 {
  margin: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.not-found-page > p:not(.about-kicker) {
  max-width: 520px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
}

.not-found-page .about-button {
  justify-self: start;
}

.island-pending-page {
  width: min(780px, calc(100% - 48px));
}

.island-pending-page strong {
  color: #fff;
  font-weight: 700;
}

.pending-island-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.pending-island-meta {
  width: min(520px, 100%);
  margin: 38px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pending-island-meta div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(6, 17, 28, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pending-island-meta dt {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pending-island-meta dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 650;
  overflow-wrap: anywhere;
}

@media (max-width: 820px) {
  .about-nav,
  .about-footer,
  .about-page {
    width: min(100% - 34px, 720px);
  }

  .about-page {
    padding-top: 54px;
  }

  .about-hero {
    min-height: auto;
    padding: 62px 0 24px;
  }

  .web-cards,
  .compact-list {
    grid-template-columns: 1fr;
  }

  .web-card {
    min-height: auto;
  }

  .about-form {
    display: grid;
  }

  .about-form button,
  .about-form input {
    width: 100%;
  }

  .about-form button {
    margin-top: 0;
  }

  .about-form .form-status {
    width: max-content;
  }
}

@media (max-width: 520px) {
  .about-brand img {
    width: 84px;
  }

  .about-hero h1 {
    font-size: 42px;
  }

  .about-lede,
  .about-copy,
  .closing-cta > p {
    font-size: 17px;
  }

  .about-section {
    margin-top: 88px;
  }

  .closing-cta {
    padding: 26px;
  }
}
