/* Tribe Coming Soon – static (final) */
:root{ --text:#333333; --cta:#EA532A; --bg:#FDFBF9; --muted:rgba(0,0,0,.06); }
*{box-sizing:border-box} html,body{height:100%}
body{
  margin:0;
  font-family: Ubuntu, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(234,83,42,0.085), transparent 40%),
    radial-gradient(circle at 80% 15%, rgba(30,136,229,0.097), transparent 45%),
    radial-gradient(circle at 60% 80%, rgba(166,204,224,0.242), transparent 50%);
  background-color: var(--bg);
  display:flex; flex-direction:column;
}

a.btn-blob, 
a.btn-blob:visited, 
a.btn-blob:hover, 
a.btn-blob:active {
  text-decoration: none !important; /* remove underline in all states */
  position:relative; z-index:1; color:#fff; 
}


/* Top brand */
.brand{ display:flex; align-items:center; justify-content:center; padding:24px 16px; text-transform:uppercase; letter-spacing:.3em; font-size:12px; }
.brand-inner{ display:flex; align-items:center; gap:8px; }
.logo{ height:24px; width:auto; display:block; }
.brand-name{ color:var(--text); }

/* Hero: just above middle */
.hero{ flex:1; max-width:960px; width:100%; margin:0 auto; padding:16vh 24px 48px; text-align:center; }
@media (min-width:768px){ .hero{ padding-top:22vh; } }
@media (min-width:1024px){ .hero{ padding-top:24vh; } }
.hero-title{ font-size:clamp(40px,10vw,72px); line-height:1.06; margin:0; font-weight:700; }
.hero-sub{ margin:16px auto 0; max-width:720px; font-size:clamp(16px,2.4vw,20px); opacity:.8; }
.hero-cta{ margin-top:40px; }

/* SVG-shaped buttons using mask on the element itself */
.btn-blob{
  display:inline-flex; align-items:center; justify-content:center;
  height:48px; padding:0 22px; font-weight:500; color:#fff;
  background:var(--cta); border:0; cursor:pointer;
  -webkit-mask:url('./assets/buttonshape.svg') no-repeat center/100% 100%;
          mask:url('./assets/buttonshape.svg') no-repeat center/100% 100%;
  filter: drop-shadow(0 8px 20px rgba(234,83,42,.25));
  transition: transform .15s ease, filter .2s ease, opacity .2s ease;
  background-clip: padding-box;
}
.btn-blob:hover{ transform: scale(1.1); filter: drop-shadow(0 12px 28px rgba(234,83,42,.35)); }
.btn-blob:active{ transform: scale(1.1) translateY(1px); }
.btn-blob:disabled{ opacity:.6; }
.btn-blob .btn-text{ position:relative; z-index:1; color:#fff; }
/* Mirrored shape: flip the button but re-flip the text */
.btn-blob--rtl{ transform: scaleX(-1); }
.btn-blob--rtl .btn-text{ transform: scaleX(-1); }
/* Hover/active scaling for mirrored shape */
.btn-blob--rtl:hover{ transform: scaleX(-1) scale(1.1); filter: drop-shadow(0 12px 28px rgba(234,83,42,.35)); }
.btn-blob--rtl:active{ transform: scaleX(-1) scale(1.1) translateY(1px); }
/* Fallback (no mask support): capsule */
@supports not ((-webkit-mask: url('x')) or (mask: url('x'))){ .btn-blob{ border-radius:999px; filter:none; box-shadow:0 8px 20px rgba(234,83,42,.25); } }

/* Subscribe section */
.subscribe{ width:100%; border-top:1px solid var(--muted); }
.subscribe-inner{ max-width:960px; margin:0 auto; padding:24px; }
.subscribe-title{ font-size:clamp(18px,2vw,20px); font-weight:500; margin-bottom:12px; }
.subscribe-form{ display:flex; gap:12px; align-items:stretch; }
.subscribe-form input{ flex:1; padding:12px 16px; border:1px solid rgba(0,0,0,.15); border-radius:12px; outline:none; font-size:16px; }
.msg{ margin-top:8px; font-size:14px; text-align:center; }

.footer{ text-align:center; padding:32px 16px; font-size:12px; opacity:.6; }
