:root{
--bg-left: #2e1065;
--bg-mid:  #5b21b6;
--bg-right:#7c3aed;
--accent:  #f59e0b;
}

/* ===== Reset ===== */
* { box-sizing: border-box; }
html, body { height: 100%; }

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #fff;

  background: linear-gradient(
    90deg,
    var(--bg-left) 0%,
    var(--bg-mid) 50%,
    var(--bg-right) 100%
  );
}


/* ===== Header area ===== */
.hero-header{
  padding: 26px 16px 18px;
  text-align: center;
}

/* Hide checkbox but keep it usable */
.menu-toggle{
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

/* Menu button row centered */
.menu-row{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
}

.menu-btn{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  user-select: none;
  padding: 10px 14px;
  border-radius: 14px;
}

.burger{
  width: 34px;
  height: 26px;
  display: grid;
  gap: 6px;
}
.burger span{
  height: 4px;
  background: #ff7a00;   /* orange like reference */
  border-radius: 4px;
  display: block;
}

.menu-text{
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .2px;
}

/* Dropdown panel */
.menu-panel{
  width: min(520px, calc(100% - 32px));
  margin: 8px auto 0;
  padding: 10px;
  border-radius: 14px;
  background: rgba(6, 16, 36, 0.65);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);

  display: none;
}

.menu-panel a{
  display: block;
  padding: 12px 12px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  opacity: 0.95;
}
.menu-panel a:hover{
  opacity: 1;
  background: rgba(255,255,255,0.08);
}

/* Toggle behaviour: show menu when checked */
.menu-toggle:checked ~ .menu-row + .menu-panel{
  display: block;
}

/* Hero copy (big text) */
.hero-copy{
  max-width: 1000px;
  margin: 18px auto 0;
  padding: 0 10px;
}
.hero-copy h1{
  margin: 18px 0 10px;
  font-weight: 900;
  font-size: clamp(44px, 6vw, 86px);
  letter-spacing: .2px;
}
.hero-copy p{
  margin: 0 auto;
  max-width: 860px;
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 800;
  line-height: 1.35;
  opacity: 0.98;
}

/* ===== Page content ===== */
.page{
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 16px 70px;
}

/* Image area */
.image-wrap{
  display: flex;
  justify-content: center;
  margin-top: 14px;
}
.image-wrap img{
  width: min(720px, 100%);
  height: auto;
  display: block;
  border-radius: 10px; /* optional; remove if you want sharp corners */
}

/* SEO text block */
.seo{
  margin: 26px auto 0;
  max-width: 860px;
  text-align: left;
  color: rgba(255,255,255,0.92);
}
.seo h2{
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 900;
}
.seo p{
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
}

/* Footer */
.footer{
  margin-top: 24px;
  text-align: center;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);  /* bright on purple */
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.footer-links a:visited {
  color: rgba(255, 255, 255, 0.9);
}

.footer-links a:hover,
.footer-links a:focus {
  color: #ffffff;
  text-decoration-thickness: 2px;
  outline: none;
}

.contact-form {
  margin-top: 1rem;
}

.contact-form .field {
  margin-bottom: 1rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 700px;
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.15);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  display: inline-block;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.form-note {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

