/* ============================================
   Mindstyle Forex — Trader's Accountability Bootcamp
   Brand: Cyan on Black
   ============================================ */

:root {
  --black: #0a0a0a;
  --black-light: #111111;
  --black-card: #141414;
  --black-border: #1f1f1f;
  --white: #f5f5f5;
  --white-muted: #a3a3a3;
  --cyan: #00b4e6;
  --cyan-dim: #0099c7;
  --cyan-glow: rgba(0, 180, 230, 0.25);
  --magenta: #e91e8c;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-height: 72px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--white-muted);
  background: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Background effects */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  z-index: 0;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation: float 20s ease-in-out infinite;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.08) 0%, transparent 70%);
  bottom: 20%;
  left: -250px;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 40px); }
}

/* Typography */
.accent-cyan {
  color: var(--cyan);
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.section-lead {
  font-size: 1.125rem;
  max-width: 640px;
  margin-bottom: 3rem;
}

.underline-accent {
  position: relative;
  display: inline-block;
}

.underline-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.05em;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--ease-out);
}

.revealed .underline-accent::after,
.in-view .underline-accent::after {
  transform: scaleX(1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.875rem 1.75rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background: var(--cyan);
  color: var(--black);
  box-shadow: 0 0 30px var(--cyan-glow);
}

.btn-primary:hover {
  background: #33c4ed;
  box-shadow: 0 0 50px var(--cyan-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--black-border);
}

.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--black-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: none;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white-muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--cyan);
}

.nav-cta {
  display: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--black-light);
  border-bottom: 1px solid var(--black-border);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-size: 1rem;
  color: var(--white-muted);
  padding: 0.5rem 0;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-height) + 3rem) 0 4rem;
  z-index: 1;
}

.hero-inner {
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--cyan);
  background: rgba(0, 180, 230, 0.08);
  border: 1px solid rgba(0, 180, 230, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-sub strong {
  color: var(--white);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num,
.stat-text {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  display: inline;
}

.stat-suffix {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cyan);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white-muted);
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--black-border);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Sections */
.section {
  position: relative;
  padding: 6rem 0;
  z-index: 1;
}

/* Problem */
.problem {
  background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
}

.pain-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}

.pain-card:hover {
  border-color: rgba(0, 180, 230, 0.3);
  transform: translateY(-4px);
}

.pain-icon {
  width: 40px;
  height: 40px;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.pain-icon svg {
  width: 100%;
  height: 100%;
}

.pain-card p {
  font-size: 1.0625rem;
  color: var(--white);
  line-height: 1.6;
}

.problem-closer {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
}

.problem-closer em {
  color: var(--cyan);
  font-style: italic;
}

/* Story */
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
  }
}

.photo-placeholder {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 400px;
  margin: 0 auto;
}

.photo-placeholder-inner {
  position: absolute;
  inset: 0;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--white-muted);
  z-index: 1;
}

.photo-placeholder-inner svg {
  width: 64px;
  height: 64px;
  opacity: 0.4;
}

.photo-placeholder-inner span {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.photo-frame {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(0, 180, 230, 0.2);
  border-radius: 24px;
  z-index: 0;
  animation: frameGlow 4s ease-in-out infinite;
}

@keyframes frameGlow {
  0%, 100% { border-color: rgba(0, 180, 230, 0.15); }
  50% { border-color: rgba(0, 180, 230, 0.4); }
}

.story-quote {
  margin-top: 2rem;
  padding: 1.5rem;
  border-left: 2px solid var(--cyan);
}

.story-quote blockquote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}

.story-text p {
  margin-bottom: 1.25rem;
}

.story-text strong {
  color: var(--cyan);
  font-weight: 500;
}

.story-signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--black-border);
}

.sig-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}

.sig-title {
  font-size: 0.875rem;
  color: var(--cyan);
}

/* Bootcamp features */
.bootcamp {
  background: var(--black-light);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s var(--ease-out);
}

.feature-card:hover {
  border-color: rgba(0, 180, 230, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.feature-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(0, 180, 230, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.feature-card:hover .feature-num {
  color: rgba(0, 180, 230, 0.4);
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* Transformation */
.transform-table {
  border: 1px solid var(--black-border);
  border-radius: 16px;
  overflow: hidden;
}

.transform-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--black-border);
  align-items: center;
}

.transform-row:last-child {
  border-bottom: none;
}

.transform-header {
  background: var(--black-card);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.transform-header span:nth-child(2) {
  visibility: hidden;
}

.before {
  color: rgba(245, 245, 245, 0.5);
  font-size: 0.9375rem;
}

.after {
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 500;
}

.transform-arrow {
  color: var(--cyan);
  font-size: 1.25rem;
}

@media (max-width: 640px) {
  .transform-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.5rem;
  }
  .transform-arrow {
    transform: rotate(90deg);
  }
  .transform-header { display: none; }
}

/* Training card */
.training-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: linear-gradient(135deg, var(--black-card) 0%, rgba(0, 180, 230, 0.05) 100%);
  border: 1px solid rgba(0, 180, 230, 0.15);
  border-radius: 24px;
  padding: 3rem;
}

@media (min-width: 768px) {
  .training-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.training-price {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--cyan);
  margin: 1rem 0 0.5rem;
}

.training-note {
  font-size: 0.875rem;
  opacity: 0.8;
}

.training-cta {
  flex-shrink: 0;
}

/* Testimonials */
.testimonials {
  background: var(--black-light);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  transition: border-color 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(0, 180, 230, 0.2);
}

.testimonial-card p {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-size: 0.8125rem;
  color: var(--cyan);
}

/* FAQ */
.faq-list {
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--black-border);
  padding: 1.25rem 0;
}

.faq-item summary {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

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

.faq-item summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cyan);
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--cyan);
}

.faq-item p {
  padding-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Waitlist */
.waitlist {
  padding-bottom: 4rem;
}

.waitlist-card {
  position: relative;
  text-align: center;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 24px;
  padding: 3rem 2rem;
  overflow: hidden;
}

@media (min-width: 640px) {
  .waitlist-card { padding: 4rem 3rem; }
}

.waitlist-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, var(--cyan-glow) 0%, transparent 70%);
  pointer-events: none;
}

.waitlist-logo {
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.waitlist-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.waitlist-sub {
  font-size: 1.0625rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.waitlist-form {
  max-width: 520px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--white-muted);
  margin-bottom: 0.5rem;
}

.form-group input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black-border);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input::placeholder {
  color: rgba(163, 163, 163, 0.5);
}

.form-group input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 180, 230, 0.1);
}

.form-group input.error {
  border-color: #ef4444;
}

.form-note {
  font-size: 0.75rem;
  color: var(--white-muted);
  margin-top: 1rem;
  opacity: 0.7;
}

.form-success {
  max-width: 420px;
  margin: 0 auto;
}

.form-success[hidden],
.btn-loading[hidden] {
  display: none !important;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: rgba(0, 180, 230, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  animation: successPop 0.5s var(--ease-out);
}

.success-icon svg {
  width: 32px;
  height: 32px;
}

@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.spinner {
  width: 20px;
  height: 20px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--black-border);
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
    align-items: start;
  }
}

.footer-brand img {
  margin-bottom: 1rem;
  opacity: 0.85;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--white-muted);
  transition: color 0.2s;
}

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

.footer-contact a {
  font-size: 0.875rem;
  color: var(--cyan);
  transition: opacity 0.2s;
}

.footer-contact a:hover {
  opacity: 0.8;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--black-border);
  font-size: 0.8125rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--white-muted);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--white);
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Stagger children in grids */
.pain-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.pain-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.pain-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.features-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.features-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.features-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.features-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.features-grid .reveal:nth-child(6) { transition-delay: 0.4s; }

.testimonial-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.testimonial-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
