:root {
  --bg: #07111f;
  --panel: rgba(12, 23, 45, 0.72);
  --panel-strong: rgba(10, 19, 36, 0.92);
  --line: rgba(164, 188, 255, 0.18);
  --text: #eef4ff;
  --muted: rgba(225, 234, 255, 0.76);
  --accent: #89a0ff;
  --accent-strong: #54e1c2;
  --shadow: 0 22px 60px rgba(2, 7, 18, 0.42);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(90, 112, 255, 0.24), transparent 32%),
    radial-gradient(circle at bottom right, rgba(84, 225, 194, 0.16), transparent 24%),
    var(--bg);
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

.site-shell {
  position: relative;
}

.panel {
  position: relative;
  padding: clamp(1.3rem, 3vw, 2rem);
}

.panel-frame {
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.hero-panel {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.hero-panel .panel-frame {
  width: 100%;
  max-width: none;
  margin: 0;
}

.hero-panel::before,
.focus-panel::before,
.contact-panel::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 2rem;
  pointer-events: none;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 8, 18, 0.82) 0%, rgba(4, 8, 18, 0.56) 40%, rgba(4, 8, 18, 0.36) 100%),
    url("../assets/hero-lounge.jpg") center center / cover no-repeat;
  transform: scale(1.03);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 17, 31, 0.12), rgba(8, 17, 31, 0.84)),
    linear-gradient(120deg, rgba(84, 225, 194, 0.12), transparent 34%);
}

.hero-copy {
  min-height: calc(100vh - 2.6rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 46rem;
  margin-left: clamp(0.25rem, 2vw, 1.5rem);
  padding: clamp(2.1rem, 3.6vw, 3.2rem) 0 clamp(2.8rem, 4vw, 3.2rem);
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  align-self: flex-start;
  margin-bottom: 1.65rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(5, 11, 23, 0.46);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.hero-brand p,
.hero-brand span {
  display: block;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #061021;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
}

.hero-brand p {
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-brand div span {
  margin-top: 0.12rem;
  color: rgba(238, 244, 255, 0.66);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(214, 224, 255, 0.74);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Outfit", sans-serif;
  letter-spacing: 0;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: 0.94;
  max-width: 10.5ch;
}

h1 span {
  display: inline-block;
  background: linear-gradient(90deg, #ffffff, var(--accent-strong));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  margin-top: 1rem;
  font-size: clamp(2.35rem, 4.4vw, 4.6rem);
  line-height: 0.98;
  max-width: 10ch;
}

.lead,
.focus-lead,
.contact-copy p,
.focus-card p,
.form-note,
label span {
  color: var(--muted);
}

.lead {
  margin-top: 1.3rem;
  max-width: 40rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.hero-actions,
.form-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  min-height: 3.45rem;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  will-change: transform;
}

.button svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button.primary {
  color: #07111f;
  background: linear-gradient(135deg, #ffffff, var(--accent-strong));
  box-shadow: 0 22px 44px rgba(84, 225, 194, 0.22);
}

.button.ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.button:hover,
.button:focus-visible {
  transform: translate3d(0, -4px, 0);
}

.hero-ribbon {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-ribbon li {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(6, 11, 22, 0.42);
  backdrop-filter: blur(10px);
  font-size: 0.83rem;
  font-weight: 600;
  color: rgba(240, 246, 255, 0.86);
}

.focus-panel {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 15% 20%, rgba(84, 225, 194, 0.18), transparent 24%),
    linear-gradient(135deg, #081326, #0b1830 62%, #09111f);
}

.focus-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1.2rem;
  align-items: start;
}

.focus-copy,
.contact-copy,
.contact-form {
  min-width: 0;
}

.focus-lead {
  margin-top: 1.1rem;
  max-width: 31rem;
  line-height: 1.8;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.focus-card,
.contact-form,
.contact-copy {
  padding: 1.35rem;
  border-radius: 1.75rem;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.focus-card {
  min-height: 15rem;
}

.focus-index {
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.focus-card h3 {
  margin-top: 0.95rem;
  font-size: 1.75rem;
  line-height: 1.02;
}

.focus-card p,
.contact-copy p,
label,
.form-note {
  line-height: 1.75;
}

.contact-panel {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background:
    linear-gradient(140deg, rgba(6, 12, 24, 0.92), rgba(10, 25, 51, 0.95)),
    var(--bg);
}

.contact-copy h2 {
  max-width: 11ch;
}

.contact-copy p + p {
  margin-top: 0.85rem;
}

.contact-points {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.3rem;
}

.contact-points li {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(239, 244, 255, 0.88);
}

.footer-copy {
  margin-top: 1.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 1rem;
  background: var(--panel-strong);
}

.row.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.55rem;
}

label span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(173, 194, 255, 0.16);
  border-radius: 1rem;
  padding: 1rem 1.05rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

select {
  appearance: none;
}

textarea {
  min-height: 10rem;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(218, 229, 255, 0.4);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(84, 225, 194, 0.55);
  box-shadow: 0 0 0 4px rgba(84, 225, 194, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.form-note {
  min-height: 1.75rem;
  font-size: 0.94rem;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 900px) {
  .hero-panel,
  .focus-layout,
  .contact-layout,
  .row.two,
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

  .hero-copy {
    min-height: calc(100svh - 2.6rem);
    padding-top: 2.4rem;
  }

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

  h1 {
    max-width: 11ch;
    font-size: clamp(2.8rem, 12vw, 4.4rem);
  }

  h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 9vw, 3rem);
  }
}
