/* Team Adventure Europe — premium landing pages
   Shared by /landing/, /oportunidade/ and their EN / ES / FR equivalents. */

:root {
  --bg: #04101b;
  --bg-2: #07192a;
  --bg-3: #0a2438;
  --ink: #eef5fa;
  --muted: #9bb2c6;
  --muted-soft: #7e97ad;
  --accent: #34d399;
  --accent-2: #2dd4bf;
  --accent-ink: #bbf7d0;
  --green: #16a34a;
  --green-dark: #15803d;
  --stroke: rgba(255, 255, 255, 0.10);
  --stroke-strong: rgba(255, 255, 255, 0.20);
  --surface: rgba(255, 255, 255, 0.045);
  --surface-2: rgba(255, 255, 255, 0.075);
  --radius: 26px;
  --radius-sm: 16px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  --maxw: 1160px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

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

a,
button,
summary {
  touch-action: manipulation;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 8px;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ---------------- header ---------------- */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(4, 16, 27, 0.72);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--stroke);
}

.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.lp-brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04101b;
  flex-shrink: 0;
}

.lp-brand-mark svg {
  width: 17px;
  height: 17px;
}

.lp-langs {
  display: flex;
  align-items: center;
  gap: 7px;
}

.lp-langs a {
  min-width: 40px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--muted);
  border: 1px solid var(--stroke);
  background: var(--surface);
  transition: color 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.lp-langs a:hover {
  color: var(--ink);
  border-color: var(--stroke-strong);
}

.lp-langs a[aria-current="true"] {
  color: #04101b;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
}

/* ---------------- buttons ---------------- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 17px 32px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
              background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg);
  transition: left 0.65s var(--ease);
  pointer-events: none;
}

.btn:hover::after {
  left: 120%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #04141d;
  box-shadow: 0 16px 38px rgba(45, 212, 191, 0.26);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(45, 212, 191, 0.34);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--stroke-strong);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  background: var(--surface-2);
  border-color: rgba(52, 211, 153, 0.5);
  color: #ffffff;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}


/* ---------------- hero ---------------- */
.lp-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(74px, 11vw, 132px) 0 clamp(64px, 9vw, 108px);
  text-align: center;
  background:
    radial-gradient(1100px 620px at 50% -10%, rgba(45, 212, 191, 0.20), transparent 62%),
    linear-gradient(170deg, var(--bg) 0%, var(--bg-2) 58%, var(--bg-3) 100%);
}

.aurora {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 130%;
  z-index: -1;
  pointer-events: none;
  filter: blur(46px);
  opacity: 0.6;
}

.aurora span {
  position: absolute;
  display: block;
  border-radius: 50%;
  mix-blend-mode: screen;
  animation: drift 22s ease-in-out infinite alternate;
}

.aurora span:nth-child(1) {
  width: 44vw;
  height: 44vw;
  left: -6vw;
  top: 4vw;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.34), transparent 66%);
}

.aurora span:nth-child(2) {
  width: 38vw;
  height: 38vw;
  right: -4vw;
  top: -4vw;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.30), transparent 66%);
  animation-delay: -7s;
}

.aurora span:nth-child(3) {
  width: 34vw;
  height: 34vw;
  left: 34vw;
  bottom: -12vw;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.20), transparent 68%);
  animation-delay: -13s;
}

@keyframes drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(3vw, 2vw, 0) scale(1.09); }
  100% { transform: translate3d(-2vw, 3vw, 0) scale(0.96); }
}

.grid-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, #000 20%, transparent 78%);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--accent-ink);
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.34);
  margin-bottom: 28px;
}

.badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  animation: ping 1.8s infinite;
  flex-shrink: 0;
}

@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
  70%  { box-shadow: 0 0 0 9px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.display {
  font-size: clamp(36px, 5.6vw, 66px);
  line-height: 1.04;
  letter-spacing: -1.9px;
  font-weight: 800;
  margin: 0 auto 24px;
  max-width: 17ch;
  text-wrap: balance;
}

.lp-hero .display {
  max-width: 21ch;
}

.display em {
  font-style: normal;
  background: linear-gradient(105deg, var(--accent) 0%, var(--accent-2) 48%, #7dd3fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  font-size: clamp(17px, 1.9vw, 20.5px);
  color: var(--muted);
  max-width: 68ch;
  margin: 0 auto;
  text-wrap: pretty;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 38px auto 0;
  max-width: 820px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
  transition: border-color 0.28s var(--ease), transform 0.28s var(--ease);
}

.chip:hover {
  border-color: rgba(52, 211, 153, 0.44);
  transform: translateY(-2px);
}

.chip svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ---------------- sections ---------------- */
.lp-section {
  position: relative;
  padding: clamp(66px, 9vw, 112px) 0;
}

.lp-section.alt {
  background:
    radial-gradient(760px 380px at 82% 0%, rgba(45, 212, 191, 0.09), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0));
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.eyebrow {
  display: block;
  text-align: center;
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.title {
  text-align: center;
  font-size: clamp(29px, 3.9vw, 45px);
  line-height: 1.12;
  letter-spacing: -1.1px;
  font-weight: 800;
  margin: 0 auto 20px;
  max-width: 24ch;
  text-wrap: balance;
}


.sub {
  text-align: center;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 18.5px);
  max-width: 74ch;
  margin: 0 auto;
  text-wrap: pretty;
}

.section-head {
  margin-bottom: clamp(40px, 5vw, 62px);
}

/* ---------------- glass cards ---------------- */
.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(276px, 1fr));
  max-width: 1000px;
  margin: 0 auto;
}

.glass {
  position: relative;
  overflow: hidden;
  padding: 32px 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.26);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(52, 211, 153, 0.44), transparent 42%, transparent 60%, rgba(45, 212, 191, 0.26));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.glass:hover,
.glass:focus-within {
  transform: translateY(-7px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.42);
}

.glass:hover::before,
.glass:focus-within::before {
  opacity: 1;
}

.g-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: #04141d;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 26px rgba(45, 212, 191, 0.24);
  flex-shrink: 0;
}

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

.glass h3 {
  font-size: 19.5px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin: 0 0 10px;
  color: #ffffff;
}

.glass p {
  margin: 0;
  color: var(--muted);
  font-size: 15.8px;
  line-height: 1.68;
}

/* ---------------- stats ---------------- */
.stats {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: 1000px;
  margin: 0 auto;
}

.stat {
  text-align: center;
  padding: 36px 26px;
}

.stat .num {
  display: block;
  font-size: clamp(32px, 4.4vw, 46px);
  font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1.05;
  background: linear-gradient(120deg, #ffffff, var(--accent-ink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}

.stat p {
  margin: 0;
  color: var(--muted);
  font-size: 15.6px;
}

/* ---------------- what you can sell ---------------- */
.tiles {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(176px, 1fr));
  max-width: 1040px;
  margin: 0 auto;
}

.tile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--stroke);
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.32s var(--ease), border-color 0.32s var(--ease), background 0.32s var(--ease);
}

.tile:hover {
  transform: translateY(-4px);
  background: var(--surface-2);
  border-color: rgba(52, 211, 153, 0.42);
}

.tile svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ---------------- pricing ---------------- */
.pricing {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}

.plan {
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
}

.plan .tag {
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
  color: var(--accent-ink);
  background: rgba(52, 211, 153, 0.13);
  border: 1px solid rgba(52, 211, 153, 0.32);
  margin-bottom: 20px;
}

.plan h3 {
  font-size: 20px;
  margin: 0 0 6px;
}

.plan .amount {
  font-size: clamp(34px, 4.6vw, 44px);
  font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1.06;
  margin: 12px 0 16px;
  color: #ffffff;
}

.plan .amount small {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--accent-ink);
  margin-top: 6px;
}

.plan.featured {
  background: linear-gradient(165deg, rgba(52, 211, 153, 0.13), rgba(45, 212, 191, 0.05) 60%, var(--surface));
  border-color: rgba(52, 211, 153, 0.34);
}

.countries {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 940px;
  margin: 0 auto clamp(34px, 4vw, 48px);
}

.country {
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 700;
  background: var(--surface);
  border: 1px solid var(--stroke);
  white-space: nowrap;
  transition: transform 0.28s var(--ease), border-color 0.28s var(--ease);
}

.country:hover {
  transform: translateY(-2px);
  border-color: rgba(52, 211, 153, 0.42);
}

.note {
  max-width: 76ch;
  margin: clamp(28px, 3.4vw, 40px) auto 0;
  text-align: center;
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--muted-soft);
}

.disclaimer {
  max-width: 88ch;
  margin: clamp(30px, 3.6vw, 44px) auto 0;
  padding: 22px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke);
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.03);
  font-size: 14.8px;
  line-height: 1.7;
  color: var(--muted);
}

/* ---------------- Sandra ---------------- */
.sandra {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(26px, 3vw, 38px);
}

.sandra-photo {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.sandra-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.sandra-body h3 {
  font-size: clamp(24px, 2.8vw, 32px);
  letter-spacing: -0.9px;
  margin: 0 0 6px;
}

.sandra-role {
  color: var(--accent);
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.3px;
  margin: 0 0 18px;
}

.sandra-body p {
  color: var(--muted);
  margin: 0 0 16px;
  font-size: 16.4px;
}

.pullquote {
  margin: 22px 0 0;
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  background: rgba(52, 211, 153, 0.09);
  border: 1px solid rgba(52, 211, 153, 0.24);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 16.6px !important;
}

/* ---------------- lists ---------------- */
.checks {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  max-width: 940px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.checks li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--stroke);
  font-size: 16px;
  transition: transform 0.28s var(--ease), border-color 0.28s var(--ease);
}

.checks li:hover {
  transform: translateX(4px);
  border-color: rgba(52, 211, 153, 0.34);
}

.checks .mark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 900;
  background: rgba(52, 211, 153, 0.16);
  color: var(--accent);
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.checks.crosses li:hover {
  border-color: rgba(248, 113, 113, 0.34);
}

.checks.crosses .mark {
  background: rgba(248, 113, 113, 0.14);
  color: #fca5a5;
  border-color: rgba(248, 113, 113, 0.28);
}

/* ---------------- FAQ ---------------- */
.faqs {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq {
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--stroke);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.faq[open] {
  border-color: rgba(52, 211, 153, 0.34);
  background: var(--surface-2);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 800;
  font-size: 17px;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary .plus {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid var(--stroke-strong);
  color: var(--accent);
  font-size: 17px;
  line-height: 1;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.faq[open] summary .plus {
  transform: rotate(45deg);
  background: rgba(52, 211, 153, 0.16);
}

.faq .answer {
  padding: 0 24px 22px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  animation: fadeSlide 0.4s var(--ease);
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* ---------------- final CTA ---------------- */
.lp-final {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  padding: clamp(70px, 9vw, 116px) 0;
  background:
    radial-gradient(900px 480px at 50% 110%, rgba(52, 211, 153, 0.22), transparent 64%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  border-top: 1px solid var(--stroke);
}

/* ---------------- footer ---------------- */
.lp-footer {
  border-top: 1px solid var(--stroke);
  padding: 34px 0 44px;
  background: var(--bg);
}

.lp-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted-soft);
}

.lp-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.lp-footer a {
  color: var(--muted);
  transition: color 0.25s var(--ease);
}

.lp-footer a:hover {
  color: #ffffff;
}

.legal-text {
  max-width: 96ch;
  margin: 26px auto 0;
  font-size: 13.2px;
  line-height: 1.7;
  color: var(--muted-soft);
  text-align: center;
}

/* ---------------- scroll reveal ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
.reveal[data-d="5"] { transition-delay: 0.40s; }

/* ---------------- responsive ---------------- */
@media (max-width: 900px) {
  .sandra {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .sandra-photo {
    max-width: 320px;
    margin: 0 auto;
  }

  .sandra-body {
    text-align: center;
  }

  .sandra-body h3 {
    text-align: center;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16.5px;
  }

  .wrap {
    padding: 0 18px;
  }

  .lp-header-inner {
    padding: 12px 18px;
  }

  .lp-brand span {
    display: none;
  }

  .display {
    letter-spacing: -1.1px;
  }

  .btn {
    width: 100%;
    padding: 16px 24px;
  }

  .btn-row {
    gap: 12px;
  }

  .glass {
    padding: 26px 22px;
  }

  .plan {
    padding: 30px 24px;
  }

  .checks {
    grid-template-columns: 1fr;
  }

  .faq summary {
    padding: 17px 18px;
    font-size: 16px;
  }

  .faq .answer {
    padding: 0 18px 19px;
  }

  .disclaimer {
    padding: 18px 20px;
    font-size: 14px;
  }

  .lp-footer-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .aurora span,
  .badge .dot {
    animation: none;
  }

  .btn::after,
  .faq .answer {
    animation: none;
    transition: none;
  }

  .btn:hover,
  .glass:hover,
  .tile:hover,
  .chip:hover,
  .country:hover,
  .checks li:hover {
    transform: none;
  }
}

/* ---------------- five-across compact cards ---------------- */
.grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.grid-5 .glass {
  padding: 24px 20px;
}

.grid-5 .g-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  margin-bottom: 14px;
}

.grid-5 .g-icon svg {
  width: 21px;
  height: 21px;
}

.grid-5 .glass h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.grid-5 .glass p {
  font-size: 14.4px;
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .grid-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-5 .glass {
    padding: 20px 17px;
  }
}

@media (max-width: 430px) {
  .grid-5 {
    grid-template-columns: 1fr;
  }
}

/* ---------------- wide service tile (ready-made packages) ---------------- */
.tile-wide {
  grid-column: 1 / -1;
  align-items: flex-start;
  padding: 22px 24px;
}

.tile-wide svg {
  margin-top: 3px;
}

.tile-text {
  display: block;
}

.tile-text strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.tile-text small {
  display: block;
  margin-top: 6px;
  font-size: 14.6px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------------- interest form ---------------- */
.form-card {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(26px, 3.4vw, 44px);
  text-align: left;
}

.form-card:hover,
.form-card:focus-within {
  transform: none;
}

.form-title {
  font-size: clamp(24px, 3.2vw, 33px);
  font-weight: 800;
  letter-spacing: -0.9px;
  line-height: 1.16;
  margin: 0 0 12px;
  color: #ffffff;
}

.form-sub {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.lp-form {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 14.2px;
  font-weight: 700;
  color: var(--ink);
}

.field .req {
  color: var(--accent);
}

.field input,
.field select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--stroke-strong);
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.4;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239bb2c6' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px 18px;
  padding-right: 44px;
  cursor: pointer;
}

.field input::placeholder {
  color: var(--muted-soft);
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  background-color: rgba(255, 255, 255, 0.085);
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.16);
}

.field select option {
  background: var(--bg-2);
  color: var(--ink);
}

.form-hp {
  display: none;
}

.form-submit {
  width: 100%;
  margin-top: 6px;
}

.form-note {
  margin: 0;
  text-align: center;
  font-size: 13.4px;
  line-height: 1.6;
  color: var(--muted-soft);
}

.form-alt {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--stroke);
  text-align: center;
}

.form-alt p {
  margin: 0;
  color: var(--muted);
  font-size: 15.4px;
}

.form-alt .btn-row {
  margin-top: 16px;
}

/* ---------------- thank-you page ---------------- */
.ty-wrap {
  min-height: 78vh;
  display: grid;
  place-items: center;
  padding: clamp(48px, 7vw, 96px) 0;
}

.ty-card {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 52px);
  text-align: center;
  animation: ty-rise 0.8s var(--ease) both;
}

.ty-card:hover,
.ty-card:focus-within {
  transform: none;
}

@keyframes ty-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.ty-check {
  width: 68px;
  height: 68px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #04141d;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 36px rgba(45, 212, 191, 0.3);
  animation: ty-pop 0.7s var(--ease) 0.12s both;
}

.ty-check svg {
  width: 34px;
  height: 34px;
}

@keyframes ty-pop {
  from {
    opacity: 0;
    transform: scale(0.72);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.ty-card h1 {
  font-size: clamp(27px, 4.2vw, 42px);
  font-weight: 800;
  letter-spacing: -1.3px;
  line-height: 1.12;
  margin: 0 0 20px;
  color: #ffffff;
}

.ty-card p {
  margin: 0 auto 16px;
  max-width: 60ch;
  color: var(--muted);
  font-size: 16.6px;
  line-height: 1.7;
}

.ty-card .btn-row {
  margin-top: 30px;
}

.ty-social {
  margin-top: 26px;
  font-size: 15.4px;
  color: var(--muted);
}

.ty-social a {
  color: var(--accent-ink);
  font-weight: 700;
  border-bottom: 1px solid rgba(187, 247, 208, 0.4);
}

.ty-social a:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.ty-note {
  margin-top: 26px !important;
  padding-top: 22px;
  border-top: 1px solid var(--stroke);
  font-size: 13.6px !important;
  color: var(--muted-soft) !important;
}

@media (prefers-reduced-motion: reduce) {
  .ty-card,
  .ty-check {
    animation: none;
  }
}

/* ---------------- contact form: textarea, choices, status ---------------- */
.field textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--stroke-strong);
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.55;
  min-height: 140px;
  resize: vertical;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.field textarea::placeholder {
  color: var(--muted-soft);
}

.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background-color: rgba(255, 255, 255, 0.085);
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.16);
}

.field .opt {
  color: var(--muted-soft);
  font-weight: 600;
}

.choice {
  display: grid;
  gap: 10px;
}

.choice-title {
  margin: 0 0 2px;
  font-size: 14.2px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
}

.choice-list {
  display: grid;
  gap: 10px;
}

.choice-list label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  color: var(--ink);
  font-size: 15.4px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.choice-list label:hover {
  background: var(--surface-2);
  border-color: var(--stroke-strong);
}

.choice-list input[type="radio"] {
  width: 18px;
  height: 18px;
  flex: none;
  accent-color: var(--accent);
  cursor: pointer;
}

.choice-list input[type="radio"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.form-message {
  display: none;
  margin: 0;
  padding: 13px 16px;
  border-radius: 14px;
  font-size: 14.8px;
  line-height: 1.6;
  text-align: center;
}

.form-message.is-visible {
  display: block;
}

.form-message.success {
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.34);
  color: var(--accent-ink);
}

.form-message.error {
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.34);
  color: #fecaca;
}

@media (max-width: 640px) {
  .choice-list label {
    font-size: 14.8px;
  }
}
