:root {
  --accent: #ff5a5f;
  --accent-dark: #e24f53;
  --bg: #ffffff;
  --fg: #0f172a;
  --muted: #64748b;
  --surface: #f8fafc;
  --radius: 18px;
  --container: 1120px;
  --shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  --black: #000000;
  --transparent: rgba(255, 255, 255, 0.12);

  --step--2: clamp(0.78rem, calc(0.74rem + 0.17vw), 0.88rem);
  --step--1: clamp(0.94rem, calc(0.88rem + 0.27vw), 1.06rem);
  --step-0: clamp(1rem, calc(0.94rem + 0.36vw), 1.125rem);
  --step-1: clamp(1.25rem, calc(1.14rem + 0.61vw), 1.5rem);
  --step-2: clamp(1.56rem, calc(1.37rem + 0.98vw), 2rem);
  --step-3: clamp(1.95rem, calc(1.63rem + 1.58vw), 2.67rem);
  --step-4: clamp(2.44rem, calc(1.94rem + 2.53vw), 3.55rem);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f172a;
    --fg: #e2e8f0;
    --muted: #94a3b8;
    --surface: #1e293b;
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  background: var(--bg);
  color: var(--fg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Ubuntu, "Helvetica Neue", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.wrapper {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
}

.container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 0;
  }
}

header {
  width: 100%;
  margin-top: 24px;
  margin-bottom: 24px;
  background: transparent;
}

.brand-container {
  font-size: var(--step-1);
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;

  /* position: relative; */
  /* overflow: hidden; */
}

.badge {
  background: rgba(255, 255, 255, 0.12);
  background: orange;
  color: var(--fg);
  color: var(--black);
  font-weight: bold;
  font-size: 32px;
  border-radius: 9999px;
  padding: 0.15rem 0.6rem;
  font-size: 0.75rem;
  line-height: 1.2;

  /* position: absolute;
  top: -2em;
  right: -6em;
  z-index: 1; */
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.25rem;
  text-align: center;
  height: 80vh;
  border-radius: var(--radius);
  background: radial-gradient(
      circle at 10% 10%,
      rgba(255, 90, 95, 0.18),
      transparent 60%
    ),
    radial-gradient(circle at 90% 20%, rgba(255, 90, 95, 0.14), transparent 65%),
    linear-gradient(135deg, rgba(255, 90, 95, 0.06) 0%, transparent 40%);
}

.email-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.get-to-us {
  font-size: clamp(1.2rem, 4vw, 1.5rem);
}

.copy-btn {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: color 0.15s ease, background 0.15s ease;
}

.copy-btn:hover {
  color: var(--accent);
  background: color-mix(in srgb, var(--fg) 8%, transparent);
}

.card {
  backdrop-filter: blur(8px);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border: 1px solid color-mix(in srgb, var(--fg) 8%, transparent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  max-width: 680px;
  width: 100%;
}

h1 {
  font-size: clamp(1.8rem, 6vw, var(--step-4));
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1rem 0;
}

p.lead {
  font-size: clamp(1rem, 3vw, var(--step-1));
  color: var(--muted);
  max-width: 50ch;
  margin: 0 auto 2rem;
}

form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
input[type="email"] {
  flex: 1 1 220px;
  min-width: 0;
  border-radius: 9999px;
  border: 1px solid color-mix(in srgb, var(--fg) 12%, transparent);
  background: var(--bg);
  color: var(--fg);
  padding: 0.9rem 1.1rem;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.15s ease;
}
input[type="email"]:focus {
  border-color: var(--accent);
}
button[type="submit"] {
  border: none;
  border-radius: 9999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 0.9rem 1.4rem;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.08s ease;
}
button[type="submit"]:hover {
  background: var(--accent-dark);
}
button[type="submit"]:active {
  transform: scale(0.98);
}

.taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 1.25rem 0 0;
}
.tag {
  background: color-mix(in srgb, var(--fg) 8%, transparent);
  color: var(--muted);
  border-radius: 9999px;
  font-size: 0.8125rem;
  padding: 0.35rem 0.75rem;
}

.section {
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.about {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: 1fr;
}
.about h2 {
  font-size: var(--step-2);
  margin-bottom: 0.25rem;
}
.about p {
  color: var(--muted);
  max-width: 65ch;
}

@media (min-width: 768px) {
  .about {
    grid-template-columns: 1fr 1fr;
  }
}

.about-visual {
  position: relative;
  min-height: 300px;
  border-radius: var(--radius);
  background: linear-gradient(
      135deg,
      rgba(255, 90, 95, 0.15),
      rgba(255, 90, 95, 0.02)
    ),
    url("https://images.unsplash.com/photo-1559746196-62a7c6b0cf66?q=80&w=2070&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.about-visual::after {
  content: "Lighting • Rigging • Power";
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.7rem;
  border-radius: 0.4rem;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1rem;
}
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--fg) 8%, transparent);
  color: var(--fg);
  transition: background 0.15s ease, transform 0.08s ease;
}
.socials a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

footer {
  color: var(--muted);
  font-size: 0.875rem;
  text-align: center;
  margin-top: 24px;
}
