/* === SwishFiles Coming Soon Styles === */

:root {
  --swish-green: #01A200;
  --swish-green-dark: #047c00;
  --swish-green-soft: #eaf8ea;
  --swish-green-soft-2: #f3fbf3;

  --text-main: #151515;
  --text-muted: #5f6368;
  --text-light: #ffffff;

  --bg-main: #f7f9f7;
  --bg-card: #ffffff;
  --bg-footer: #f0f3f0;
  --bg-section: #fbfdfb;

  --border-soft: #e2e8e2;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 16px 40px rgba(1, 162, 0, 0.14);

  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --container-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.container {
  width: min(90%, var(--container-width));
  margin: 0 auto;
}

header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border-soft);
  padding: 0.95rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--swish-green);
  white-space: nowrap;
  text-decoration: none;
}

.logo span {
  color: var(--text-main);
}

nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.96rem;
  font-weight: 600;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

nav a:hover,
nav a.active {
  color: var(--swish-green);
  background: var(--swish-green-soft);
}

#menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: #ffffff;
  color: var(--swish-green);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, var(--swish-green), var(--swish-green-dark));
  color: var(--text-light);
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -48% -10%;
  height: 70%;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50% 50% 0 0;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: 960px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

.section-kicker {
  color: var(--swish-green);
}

.hero h1 {
  max-width: 920px;
  margin: 0 auto 1rem;
  font-size: clamp(2.55rem, 6.2vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.hero p {
  max-width: 760px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn.highlight {
  background: #ffffff;
  color: var(--swish-green);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

.cta-buttons .btn:not(.highlight) {
  border-color: rgba(255, 255, 255, 0.78);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.7rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 750;
}

.features {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--bg-card);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.section-heading h2,
.split h2,
.final-cta h2 {
  color: var(--text-main);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
  margin-bottom: 0.85rem;
}

.section-heading p,
.split p,
.final-cta p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.35rem;
}

.feature {
  background: linear-gradient(180deg, #ffffff, #fbfefb);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(1, 162, 0, 0.28);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: var(--swish-green-soft);
  color: var(--swish-green);
  font-size: 1rem;
  font-weight: 900;
}

.feature h3 {
  color: var(--swish-green);
  font-size: 1.28rem;
  line-height: 1.25;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.feature p {
  color: var(--text-muted);
}

.trust-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--bg-section);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.trust-card {
  border: 1px solid rgba(1, 162, 0, 0.16);
  border-radius: var(--radius-xl);
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-soft);
}

.trust-card h3 {
  color: var(--text-main);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.8rem;
}

.trust-card ul {
  list-style: none;
}

.trust-card li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.trust-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--swish-green);
  font-weight: 900;
}

.final-cta {
  padding: clamp(4rem, 7vw, 6rem) 0;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(1, 162, 0, 0.12), transparent 30%),
    #ffffff;
}

.final-cta .container {
  max-width: 860px;
  border: 1px solid rgba(1, 162, 0, 0.16);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(180deg, #ffffff, #f7fff7);
  box-shadow: var(--shadow-soft);
}

.notify-form {
  width: 100%;
  max-width: 560px;
  margin: 2rem auto 0;
  text-align: left;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 800;
}

.form-group input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: #ffffff;
  color: var(--text-main);
  padding: 0.8rem 0.95rem;
  font: inherit;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.035);
}

.auth-submit {
  width: 100%;
  background: var(--swish-green);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(1, 162, 0, 0.22);
}

.form-message {
  margin-top: 1.1rem;
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

footer {
  background: var(--bg-footer);
  padding: 2.25rem 0;
  font-size: 0.95rem;
  text-align: center;
  color: var(--text-muted);
  border-top: 1px solid var(--border-soft);
}

footer a {
  color: var(--swish-green);
  font-weight: 750;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
  margin-top: 0.75rem;
}

nav a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(1, 162, 0, 0.28);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0.8rem 0;
  }

  #menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    max-height: 0;
    overflow: hidden;
    padding: 0 5%;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
    transition:
      max-height 0.3s ease,
      padding 0.3s ease;
  }

  nav.open {
    max-height: 520px;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  nav a,
  nav .btn {
    width: 100%;
    margin: 0;
    justify-content: center;
    text-align: center;
  }

  .hero {
    padding: 4rem 0;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    width: 92%;
  }

  .logo {
    font-size: 1.45rem;
  }

  .hero h1 {
    letter-spacing: -0.045em;
  }

  .feature {
    padding: 1.25rem;
  }

  .trust-card {
    border-radius: var(--radius-lg);
  }

  .hero-points {
    justify-content: stretch;
  }

  .hero-points span {
    width: 100%;
    justify-content: center;
  }
}