:root {
  /* Brand blues */
  --et-primary: #1465a6;        /* etdarkblue – main brand colour */
  --et-primary-light: #2295db;  /* etlightblue – hover/gradient */
  --et-primary-dark: #0f4c86;   /* a slightly darker shade for hover/pressed */

  /* Accent colours */
  --et-accent: #ff4500;         /* etorange – CTAs, highlights */
  --et-secondary: #00b5ad;      /* etteal – sparing secondary accent */

  /* Backgrounds */
  --et-bg: #020617;             /* keep the inky dark background */
  --et-light-bg: #f8fafc;

  /* Text & neutrals */
  --et-text: #0f172a;
  --et-muted: #6b7280;

  /* Borders & subtle surfaces */
  --et-border: #bdc3c7;         /* etgrey */
  --et-radius-lg: 1rem;
}


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--et-text);
  background: #020617;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout */
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at top left, #2295db 0, #020617 40%);
  color: #f9fafb;
}


.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

header {
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
  padding: 1rem 0;
  backdrop-filter: blur(8px);
  background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7));
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-wrap img {
  height: 48px;
  width: auto;
  border-radius: 0.5rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text span:first-child {
  font-weight: 700;
  font-size: 1.1rem;
}

.logo-text span:last-child {
  font-size: 0.8rem;
  color: #cbd5f5;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

nav a {
  color: #e5e7eb;
  opacity: 0.85;
}

nav a:hover {
  opacity: 1;
}

@media (max-width: 800px) {
  nav {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease,
    box-shadow 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--et-primary);
  color: #fff;
  box-shadow: 0 10px 25px rgba(20, 101, 166, 0.4); /* based on etdarkblue */
}

.btn-primary:hover {
  background: var(--et-primary-light);
  transform: translateY(-1px);
  box-shadow: 0 16px 35px rgba(34, 149, 219, 0.6);
}


.btn-outline {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.5);
}

.btn-outline:hover {
  border-color: #e5e7eb;
  background: rgba(15, 23, 42, 0.6);
}

/* Accent button: blue base, white text, orange chevron on the right */
.btn-accent {
  position: relative;
  background: var(--et-primary);
  color: #ffffff;
  border: none;
  padding-right: 2.6rem;     /* space for chevron */
  overflow: hidden;
  line-height: 1;            /* prevents vertical drift */
}

/* Orange chevron on the right */
.btn-accent::after {
  content: "";
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1rem;
  height: 1.1rem;

  /* SVG chevron: stroked > shape in your orange */
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'>\
  <path fill='none' stroke='%23ff4500' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M7 4l6 6-6 6'/>\
</svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}


/* Hover: background black, chevron stays orange */
.btn-accent:hover {
  background: #000000;
  color: #ffffff;
}

.btn-accent:hover::after {
  color: var(--et-accent);
}

/* Homepage hero */
.hero {
  padding: 3.5rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.8fr);
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  header {
    position: static;
  }
  nav {
    display: none;
  }
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: #a5b4fc;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2rem, 3vw + 1rem, 2.8rem);
  margin: 0 0 0.75rem;
}

.hero h1 span.highlight {
  color: #bfdbfe;
}

.hero-subtitle {
  font-size: 1rem;
  color: #e5e7eb;
  max-width: 32rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-meta {
  font-size: 0.8rem;
  color: #cbd5f5;
}

.hero-meta strong {
  font-weight: 600;
}

.hero-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 16px 50px rgba(15, 23, 42, 0.7);
}

.hero-card h2 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.hero-card p {
  font-size: 0.85rem;
  color: #cbd5f5;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

/* Ticket lookup form on homepage */
.ticket-form {
  display: grid;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.5rem;
}

.ticket-form label {
  font-weight: 500;
  color: #e5e7eb;
}

.ticket-form input[type="text"],
.ticket-form input[type="password"],
.ticket-form input[type="email"] {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.55rem 0.75rem;
  background: rgba(15, 23, 42, 0.9);
  color: #f9fafb;
  font-size: 0.9rem;
}

.ticket-form input::placeholder {
  color: #64748b;
}

.ticket-form input:focus {
  outline: 2px solid rgba(96, 165, 250, 0.7);
  outline-offset: 1px;
  border-color: transparent;
}

.ticket-form small {
  color: #9ca3af;
  font-size: 0.75rem;
}

.ticket-form .submit-row {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.25rem;
}

/* Main content sections (homepage & shared) */
main {
  background: #f8fafc;
  color: #0f172a;
  border-radius: 2rem 2rem 0 0;
  margin-top: 2.5rem;
  padding: 2.5rem 0 3rem;
  box-shadow: 0 -10px 40px rgba(15, 23, 42, 0.5);
}

.section {
  padding: 1.75rem 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--et-muted);
  max-width: 28rem;
}

/* Pills / labels */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: #e0f2fe;
  color: #0369a1;
  font-weight: 600;
}

.pill span {
  opacity: 0.9;
}

/* Features (homepage) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.feature-card {
  background: #fff;
  border-radius: var(--et-radius-lg);
  padding: 1.25rem;
  border: 1px solid var(--et-border);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--et-muted);
}

/* How it works (homepage) */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  counter-reset: step;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: minmax(0, 1fr);
  }
}

.step-card {
  background: #fff;
  border-radius: var(--et-radius-lg);
  padding: 1.25rem;
  border: 1px solid var(--et-border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.step-card h3 {
  margin: 0;
  font-size: 0.95rem;
}

.step-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--et-muted);
}

/* Promoter logos (homepage) */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: center;
}

@media (max-width: 900px) {
  .logos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .logos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.logo-card {
  background: #ffffff;
  padding: 0.75rem;
  border-radius: 0.9rem;
  border: 1px solid var(--et-border);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.logo-card img {
  max-height: 52px;
  object-fit: contain;
}

/* FAQ / footer (shared) */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  gap: 1.75rem;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.faq-item + .faq-item {
  margin-top: 0.75rem;
}

.faq-item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.faq-item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--et-muted);
}

footer {
  padding: 1.5rem 0 2rem;
  background: #0b1120;
  color: #9ca3af;
  font-size: 0.8rem;
}

footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Promoter sign-up page specific ---------- */

/* Page hero on promoter signup */
.page-hero {
  padding: 2.5rem 0 2rem;
  text-align: left;
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw + 1rem, 2.4rem);
  margin: 0 0 0.75rem;
}

.page-hero p {
  max-width: 36rem;
  font-size: 0.98rem;
  color: #e5e7eb;
  line-height: 1.6;
  margin: 0;
}

/* Promoter form layout */
.form-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--et-border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.card h2 {
  margin-top: 0;
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
}

.card p {
  margin-top: 0;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--et-muted);
}

/* Generic form controls (promoter page) */
form {
  display: grid;
  gap: 1rem;
}

.field-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 640px) {
  .field-group {
    grid-template-columns: minmax(0, 1fr);
  }
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.required {
  color: #dc2626;
  margin-left: 0.15rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--et-border);
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  font-family: inherit;
  background: #f9fafb;
  color: var(--et-text);
}

input::placeholder,
textarea::placeholder {
  color: #9ca3af;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(37, 99, 235, 0.6);
  outline-offset: 1px;
  border-color: transparent;
  background: #ffffff;
}

textarea {
  min-height: 90px;
  resize: vertical;
}

.help-text {
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: var(--et-muted);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.checkbox-row input[type="checkbox"] {
  margin-top: 0.2rem;
}

.form-footer {
  margin-top: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-note {
  font-size: 0.78rem;
  color: var(--et-muted);
}

.trust-note strong {
  font-weight: 600;
}
