/* ======================================================
   SKN LANDING – UNIFIED STYLESHEET
====================================================== */

/* ---------- ROOT SYSTEM ---------- */
#skn-landing {
  --bg: #000000;
  --white: #ffffff;

  /* Brand Accent (GREEN) */
  --accent: #63c46b;
  --accent-dark: #4caf50;

  /* Supporting */
  --steel: #8fa6c1;
  --muted: #a8b0b8;
  --border: rgba(255,255,255,.08);

  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--white);
}

/* ---------- TOP MARKET BAR ---------- */
.skn-market-bar {
  background: var(--accent);
  color: #000;
  text-align: center;
  font-size: 12px;
  letter-spacing: .15em;
  padding: 10px 0;
  font-weight: 600;
  text-transform: uppercase;
}

/* ---------- HEADER ---------- */
.skn-header {
  border-bottom: 1px solid var(--border);
}
.skn-header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.skn-logo {
  font-weight: 700;
  font-size: 20px;
}
.skn-logo span { color: var(--accent); }

.skn-nav a {
  margin: 0 18px;
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--muted);
  text-decoration: none;
}

/* ---------- BUTTONS ---------- */
.skn-btn {
  display: inline-block;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 600;
}
@keyframes skn-pulse-grow {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes skn-pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.45;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.skn-btn-primary {
  animation: skn-pulse-grow 2.8s ease-in-out infinite;
  will-change: transform;
}
.skn-btn-primary {
  position: relative;
  background: var(--accent);
  color: #000;
  padding: 20px 42px;
  border-radius: 6px;
  z-index: 1;
  overflow: visible;
}
/* Normalize primary CTA text across page */
.skn-btn-primary,
.landing-page-form input[type="submit"] {
  font-size: 17px;        /* ~140% of original */
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

.skn-btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: rgba(99, 196, 107, 0.55);
  z-index: -1;
  animation: skn-pulse-ring 2.8s ease-out infinite;
}
.skn-btn-primary:hover::after {
  animation-play-state: paused;
}

.skn-btn-outline {
  border: 1px solid var(--white);
  color: var(--white);
  padding: 14px 24px;
}

.skn-btn-primary {
  background: var(--accent);
  color: #000;
  padding: 20px 42px;
  border-radius: 6px;
}

.skn-btn-pill {
  background: var(--white);
  color: #000;
  padding: 20px 46px;
  border-radius: 999px;
}

/* ---------- HERO ---------- */
.skn-hero {
  padding: 120px 0 140px;
}
.skn-hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

/* Eyebrow */
.skn-eyebrow {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: .25em;
  margin-bottom: 24px;
}
.skn-eyebrow span {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--accent);
  margin-right: 12px;
}

/* Hero Heading */
.skn-hero-title {
  font-family: "Playfair Display", serif;
  font-size: 50px;
  line-height: 1.05;
  margin-bottom: 28px;
}
.skn-hero-title .underline {
  position: relative;
  display: inline-block;
  font-style: normal;              /* remove italic */         
  color: var(--steel);             /* keep grey text */
  padding-bottom: 6px;
}
.skn-hero-title .underline {
  text-decoration-line: underline;
  text-decoration-color: var(--accent); /* green underline */
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;

  color: var(--steel);          /* grey text */
  font-style: normal;
}






/* Hero Text */
.skn-hero-content p {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}
.skn-hero-content p + p {
  margin-top: 16px;
}

.skn-hero-actions {
  margin-top: 40px;
}

/* ---------- FORM CARD ---------- */
.skn-hero-form {
  background: linear-gradient(180deg, #0c0c0c, #050505);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px;
}

/* Headings */
.skn-hero-form h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin: 0 0 6px;
}

.skn-hero-form .form-sub {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 24px;
}

/* ---------- FORM LAYOUT (SINGLE SOURCE OF SPACING) ---------- */
.skn-hero-form form {
  flex-direction: column;
  gap: 14px; /* controls ALL vertical spacing */
}

/* Grid for paired fields */
.skn-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px; /* matches form gap */
}

/* Inputs */
.skn-hero-form input {
  width: 100%;
  padding: 14px;
  background: #111;
  border: 1px solid var(--border);
  color: var(--white);
  margin: 0; /* prevent browser defaults */
}

/* Submit button */
.skn-hero-form button {
  margin: 10px 0 0; /* intentional separation from fields */
  width: 100%;
  background: var(--white);
  color: #000;
  padding: 18px;
  font-size: 12px;
  letter-spacing: .2em;
  border: none;
  cursor: pointer;
}

/* Footnote */
.skn-form-footnote {
  margin-top: 18px;
  font-size: 11px;
  text-align: center;
  color: var(--muted);
}


/* ---------- SWISS DIFFERENTIATOR ---------- */
.skn-diff {
  padding: 140px 0;
  border-top: 1px solid var(--border);
}
.skn-diff-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
}

.skn-diff-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  line-height: 1;
  margin-bottom: 32px;
}

.skn-diff-content p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.skn-diff-item {
  margin-top: 16px;
  padding: 18px 22px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #0c0c0c, #050505);
}

/* Table Card */
.skn-diff-card {
  background: radial-gradient(
    120% 120% at top left,
    rgba(99, 196, 107, 0.18),
    #050505 60%
  );
  border: 1px solid var(--border);
  border-radius: 14px;
}


.skn-diff-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 18px 24px;
  border-top: 1px solid var(--border);
  font-size: 14px;
}

.skn-diff-row.head {
  border-top: none;
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--muted);
}

.skn-diff-row .green { color: var(--accent); }

.skn-floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  background: linear-gradient(180deg, var(--accent), var(--accent));
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  box-shadow:
    0 0 0 6px rgba(99,196,107,.15),
    0 12px 30px rgba(99,196,107,.35);
}

/* ======================================================
   FINAL CTA (RESTORED)
====================================================== */

.skn-final-cta {
  padding: 160px 24px 120px;
  text-align: center;
  border-top: 1px solid var(--border);
  background: transparent;
}

.skn-final-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.skn-final-cta p {
  max-width: 680px;
  margin: 0 auto 48px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

/* CTA Button (pill) */
.skn-final-cta .skn-btn-pill {
  background: var(--white);
  color: #000;
  padding: 20px 46px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .2em;
  font-weight: 600;
  display: inline-block;
}

/* Locations line */
.skn-locations {
  margin-top: 80px;
  font-size: 11px;
  letter-spacing: .3em;
  color: #6b7280;
}

/* ======================================================
   TRUST LOGO (HEADER + FORM FOOTER)
====================================================== */

/* Shared logo styling */
.skn-trust-logo {
  height: 18px;
  opacity: 0.85;
  display: block;
}

/* Header alignment */
.skn-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Optional subtle divider in header */
.skn-logo-wrap .skn-trust-logo {
  padding-left: 14px;
  border-left: 1px solid var(--border);
}

/* Form footer alignment */
.skn-form-footnote {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 640px) {

  /* Smaller logo on mobile */
  .skn-trust-logo {
    height: 14px;
    opacity: 0.9;
  }

  /* Tighter spacing in header */
  .skn-logo-wrap {
    gap: 10px;
  }

  .skn-logo-wrap .skn-trust-logo {
    padding-left: 10px;
  }
}

/*cf7 Form  styling*/
/* ======================================================
   CONTACT FORM 7 – LANDING PAGE STYLING
====================================================== */

/* Reset CF7 default styles */

.landing-page-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Make full-width fields span both columns */
.cf7-liquidity,
.cf7-objective,
.cf7-submit,
.cf7-text-note {
  grid-column: span 2;
}

/* Labels */
.landing-page-form label {
  display: block;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

/* Inputs & selects */
.landing-page-form input,
.landing-page-form select {
  width: 100%;
  padding: 14px;
  background: #111;
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 14px;
}

/* Submit button */
.landing-page-form input[type="submit"] {
  background: var(--white);
  color: #000;
  padding: 18px;
  font-size: 12px;
  letter-spacing: .2em;
  border: none;
  cursor: pointer;
}

/* Focus state */
.landing-page-form input:focus,
.landing-page-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(99,196,107,.15);
}
/* Textarea styling */
.landing-page-form textarea {
  width: 100%;
  padding: 14px;
  background: #111;
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 14px;
  min-height: 80px;
  height: 80px;
  line-height: 1.4;
  resize: vertical;
}
/* CF7 response messages */
.wpcf7-response-output {
  grid-column: span 2;
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
  border: none;
}
@media (max-width: 640px) {
  .landing-page-form {
    grid-template-columns: 1fr;
  }

  .landing-page-form > div {
    grid-column: span 1 !important;
  }
}
/* ======================================================
   MOBILE LAYOUT OVERRIDES – REQUIRED
====================================================== */
@media (max-width: 768px) {

  /* HERO */
  .skn-hero {
    padding: 72px 0 88px;
  }

  .skn-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .skn-hero-title {
    font-size: 36px;
    line-height: 1.15;
  }

  .skn-hero-content p {
    max-width: 100%;
  }

  .skn-hero-form {
    padding: 26px 22px;
  }

  /* DIFFERENTIATOR */
  .skn-diff {
    padding: 96px 0;
  }

  .skn-diff-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .skn-diff-content h2 {
    font-size: 40px;
  }
@media (max-width: 768px) {
  .skn-floating-cta {
    display: none !important;
  }
}

  /* FLOATING CTA – mobile-friendly */
.skn-floating-cta {
  left: 16px;
  right: 16px;
  bottom: 16px;
  justify-content: center;
}

}

/* Utility helpers for landing form layout */
.landing-col-1 {
  grid-column: span 1;
}

.landing-col-2 {
  grid-column: span 2;
}

/* ======================================================
   LANDING PAGE – FOOTER DISCLOSURE
====================================================== */

.skn-landing-footer {
  padding: 64px 24px 72px;
  background: transparent;
}

.skn-landing-footer-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
}

/* Faint divider */
.skn-footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 28px;
}

/* Disclosure text */
.skn-footer-disclosure {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Links */
.skn-footer-links {
  font-size: 16px;
  margin-bottom: 14px;
}

.skn-footer-links a {
  color: var(--steel);
  text-decoration: none;
}

.skn-footer-links a:hover {
  color: var(--accent);
}

.skn-footer-sep {
  margin: 0 10px;
  opacity: 0.5;
}

/* Copyright */
.skn-footer-copy {
  font-size: 14px;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

/* ======================================================
   MOBILE HORIZONTAL SCROLL FIX (CRITICAL)
====================================================== */

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Prevent any section from exceeding viewport */
/* ======================================================
   MOBILE HORIZONTAL SCROLL FIX – SAFE VERSION
====================================================== */



/* Floating CTA – absolute kill on mobile */
@media (max-width: 768px) {
  .skn-floating-cta {
    display: none !important;
    left: auto !important;
    right: auto !important;
  }
}

/* ======================================================
   AJ CRM – INLINE SUCCESS MESSAGE (GREEN CARD)
====================================================== */

.aj-crm-inline-message {
  margin-top: 18px;
  padding: 22px 26px;

  background: #062f1a;           /* deep green background */
  border: 1px solid #2fbf71;     /* green border */
  border-radius: 10px;

  color: #8af5b5;                /* soft green text */
  font-size: 14px;
  line-height: 1.6;
  text-align: center;

  box-shadow:
    0 0 0 1px rgba(47,191,113,.18),
    0 12px 30px rgba(0,0,0,.35);
}

/* subtle entrance */
.aj-crm-inline-message {
  animation: sknFadeIn .35s ease-out;
}

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


/* ======================================================
   HERO COPY – TRUST STRIP + DETAILS
====================================================== */

/* FORCE micro line style */
.skn-hero-content .skn-hero-micro {
  font-size: 12px !important;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent) !important;
  margin-bottom: 28px;
}

/* Intro paragraph */
.skn-hero-intro {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 18px;
}

/* Bullet list */
.skn-hero-list {
  max-width: 560px;
  padding-left: 18px;
  margin: 0;
}

.skn-hero-list li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 10px;
}

.skn-hero-list strong {
  color: var(--white);
  font-weight: 600;
}

@media (max-width: 768px) {
  .skn-hero-content .skn-hero-micro {
    font-size: 11px !important;
  }

  .skn-hero-intro {
    font-size: 14px;
  }

  .skn-hero-list li {
    font-size: 13px;
  }
}