:root {
  --warm-off-white: #F7F3EE;
  --soft-charcoal: #2E2A27;
  --pale-sand: #E8E0D5;
  --muted-olive: #8B8B7A;
}

.idea {
  font-family: serif;
  color: var(--soft-charcoal);
  background-color: var(--warm-off-white);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.idea nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  border-bottom: 1px solid var(--pale-sand);
}

.idea .wordmark {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

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

.idea .nav-links a {
  text-decoration: none;
  color: var(--soft-charcoal);
  padding: 0.5rem 0;
}

.idea .nav-button {
  background-color: var(--soft-charcoal);
  color: var(--warm-off-white);
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: inherit;
}

.idea [data-layout="split-hero"] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 6rem 5%;
  align-items: center;
}

.idea .hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
}

.idea .hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.idea .hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.idea .hero-actions .primary-button {
  background-color: var(--soft-charcoal);
  color: var(--warm-off-white);
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  letter-spacing: inherit;
}

.idea .hero-actions .secondary-link {
  color: var(--soft-charcoal);
  text-decoration: none;
  font-size: 1rem;
}

.idea .hero-image-container {
  position: relative;
  padding: 1rem;
  background-color: var(--pale-sand);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.idea .hero-image-container img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.idea [data-layout="how-it-works"] {
  padding: 6rem 5%;
  text-align: center;
}

.idea [data-layout="how-it-works"] h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
}

.idea [data-layout="how-it-works"] > p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.idea .steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  text-align: left;
}

.idea .step-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.idea .step-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.idea .step-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.idea .step-content p {
  margin-bottom: 1.5rem;
}

.idea .step-actions {
  display: flex;
  gap: 1rem;
}

.idea .step-actions .button-light {
  background-color: var(--pale-sand);
  color: var(--soft-charcoal);
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: inherit;
  font-size: 0.9rem;
}

.idea .step-actions .button-text {
  background: none;
  border: none;
  color: var(--soft-charcoal);
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: inherit;
  font-size: 0.9rem;
}

.idea [data-layout="pricing-table"] {
  padding: 6rem 5%;
  text-align: center;
}

.idea [data-layout="pricing-table"] h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
}

.idea [data-layout="pricing-table"] > p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.idea .pricing-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.idea .price-card {
  background-color: var(--pale-sand);
  padding: 3rem;
  border-radius: 8px;
  text-align: center;
  flex: 1;
  max-width: 350px;
}

.idea .price-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.idea .price-card .price {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.idea .price-card .price span {
  font-size: 1.2rem;
  font-weight: normal;
}

.idea .price-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.idea .price-card ul li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.idea .price-card .select-button {
  background-color: var(--soft-charcoal);
  color: var(--warm-off-white);
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  letter-spacing: inherit;
  width: 100%;
}

.idea footer {
  padding: 3rem 5%;
  text-align: center;
  border-top: 1px solid var(--pale-sand);
  color: var(--muted-olive);
  font-size: 0.9rem;
}
