/* Shared theme tokens */
/*v3*/
:root {
  --bg: #0f1012;
  --fg: #16181c;
  --text: #d7d9e0;
  --muted: #8d91a1;
  --accent: #7cd245;
  --Highlighted: #7cd245;
}

* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(124, 210, 69, 0.06), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(124, 210, 69, 0.04), transparent 35%),
    var(--bg);
  color: var(--text);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  line-height: 1.6;
}

.announcement-banner {
  display: grid;
  gap: 0.2rem;
  align-items: center;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  background: #5b2d2d;
  color: #f8eaea;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.announcement-banner__label {
  display: inline-block;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.announcement-banner__text {
  color: #f5dada;
}

.announcement-banner__link {
  color: #ffe5e5;
  font-weight: 700;
  text-decoration: none;
}

.announcement-banner__link:hover {
  text-decoration: underline;
  color: #fff4f4;
}

.page {
  display: block;
  padding: 2.5rem clamp(1rem, 4vw, 3rem);
  max-width: 960px;
  margin: 0 auto;
}

.scrolling_quote 

.card {
  background: var(--fg);
  padding: 2rem;
  width: 90%;
  max-width: 650px;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
}

h1 {
  margin-top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.email {
  margin-top: 1rem;
  font-weight: bold;
}

.email a {
  color: var(--accent);
  text-decoration: none;
}


.email a:hover {
  text-decoration: underline;
}

.link {
  margin-top: 1rem;
  font-weight: bold;
  color: var(--muted);
  text-decoration: none;
}

.link:visited {
  color: var(--muted);
}

.link:hover {
  text-decoration: underline;
}

.SC_link { /* SC_link stands for Small contact link*/
  margin-top: 1rem;
  font-weight: bold;
  color: var(--Highlighted);
  text-decoration: none;
}

.SC_link:visited {
  color: var(--Highlighted);
}

.SC_link:hover {
  text-decoration: underline;
}

.foot {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.control input[type="color"] {
  width: 48px;
  height: 32px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.control span {
  color: var(--text);
  letter-spacing: 0.01em;
}

/* Idea page layout */
.hero {
  display: grid;
  gap: 1rem;
  align-items: start;
  margin-bottom: 2rem;
}

.hero__content h1 {
  margin: 0.25rem 0 0.75rem;
  color: #f1f3f7;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.hero--simple h1 {
  margin: 0.25rem 0 0.5rem;
  color: #f1f3f7;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero__panel {
  background: var(--fg);
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.panel__title {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #e5e6ec;
  font-weight: 600;
}

.panel__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.25rem;
  color: var(--text);
}

.content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.section__header h2 {
  margin: 0.25rem 0 0.5rem;
  color: #e5e6ec;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
}

.muted {
  color: var(--muted);
}

.section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 1.25rem;
}

.section--split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  align-items: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.plan {
  background: var(--fg);
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: grid;
  gap: 0.65rem;
  
}

.plan:hover {
  border-color: #7bd24549;
  box-shadow: 0 0 20px rgba(124, 210, 69, 0.4);
  transform: scale(1.01);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, color 200ms ease;
}

.plan__name {
  margin: 0;
  color: #e5e6ec;
  font-weight: 700;
}

.plan__price {
  margin: 0;
  font-size: 1.75rem;
  color: var(--accent);
}

.plan__price span {
  font-size: 1rem;
  color: var(--muted);
}

.plan__desc {
  margin: 0;
  color: var(--text);
}

.plan__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
}

.plan__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 0.9rem;
  border-radius: 9px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 120ms ease, border-color 150ms ease, background-color 150ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
}

.button--accent {
  background: var(--accent);
  color: #0b1600;
  border-color: var(--accent);
  box-shadow: none;
}

.button--accent:hover {
  background: #90df66;
}

.button--ghost {
  background: transparent;
  color: #f1f3f7;
  border-color: rgba(255, 255, 255, 0.12);
}

.button_small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 0.9rem;
  border-radius: 9px;
  font-weight: 700;
  margin-top: 5px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 120ms ease, border-color 150ms ease, background-color 150ms ease;
  cursor: pointer;
  max-height: 40px;
}

.button_small:hover {
  transform: translateY(-1px);
}

.button_small--accent {
  background: var(--accent);
  color: #0b1600;
  border-color: var(--accent);
  box-shadow: none;
}

.button_small--accent:hover {
  background: #90df66;
}

.button_small--ghost {
  background: transparent;
  color: #f1f3f7;
  border-color: rgba(255, 255, 255, 0.12);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 0.25rem;
}

.lede {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
}

.hero--simple .pillars {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
}

/* Smooth fade animation */
.pillars li {
  transition: opacity 0.5s;
}

.quote-rotator {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  height: 1.5rem;            /* height of one quote */
  overflow: hidden;
  position: relative;
}

.quote-rotator li {
  height: 1.5rem;
  display: flex;
  align-items: center;
  padding: 0.6rem 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  color: var(--muted);
}

/* Animation: cycles through 3 quotes * 3 seconds = 9 sec total */
.quote-rotator {
  animation: rotateQuotes 9s infinite;
}

@keyframes rotateQuotes {
  0%   { transform: translateY(0); }
  33%  { transform: translateY(-1.5rem); }
  66%  { transform: translateY(-3rem); }
  100% { transform: translateY(0); }
}

.contact-card {
  background: var(--fg);
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: grid;
  gap: 0.75rem;
}

.contact-card__title {
  margin: 0;
  color: #e5e6ec;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}

.step-title {
  margin: 0 0 0.35rem;
  color: #e5e6ec;
  font-size: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.85rem;
}

.field {
  display: grid;
  gap: 0.4rem;
  color: #f1f3f7;
  font-weight: 600;
}

.field span {
  font-size: 0.9rem;
}

.field__label {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.field__hint {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: right;
}

.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0.55rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: var(--text);
  font: inherit;
  appearance: none;
  box-sizing: border-box;
}

.field input,
.field select {
  min-height: 44px;
  line-height: 1.35;
}

.field select {
  padding-right: 2.5rem;
  background-image: linear-gradient(45deg, transparent 50%, #f1f3f7 50%), linear-gradient(135deg, #f1f3f7 50%, transparent 50%);
  background-position: right 0.95rem center, right 0.75rem center;
  background-size: 10px 6px, 10px 6px;
  background-repeat: no-repeat;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(124, 210, 69, 0.4);
  border-color: rgba(124, 210, 69, 0.7);
  box-shadow: 0 0 0 2px rgba(124, 210, 69, 0.12);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #ff7b7b;
  outline: 2px solid rgba(255, 123, 123, 0.35);
}

.error-text {
  color: #ffb0b0;
  font-size: 0.8rem;
  min-height: 1rem;
}

.field.full {
  grid-column: 1 / -1;
}

.small-note {
  font-size: 0.9rem;
}

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

.form-actions--inline {
  justify-content: flex-start;
}

.form-actions--inline .button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.stepper {
  display: inline-flex;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  align-items: center;
}

.step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.step-dot.active {
  color: #0b1600;
  background: var(--accent);
  border-color: var(--accent);
}

.form-step {
  display: none;
  gap: 0.5rem;
}

.form-step.active {
  display: grid;
}

.form-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  body {
    display: block;
  }

  .page {
    padding: 1.5rem 1rem 2rem;
  }
}
